AIMP Forum

AIMP for Windows => Вопросы / Questions => Topic started by: Biff on June 05, 2021, 21:33:15

Title: Split a single file with a concert to single pieces containing a single track?
Post by: Biff on June 05, 2021, 21:33:15
Can one split a single file with a concert to single pieces containing a single track each one?
Title: Re: Split a single file with a concert to single pieces containing a single track?
Post by: sveakul on June 05, 2021, 22:25:55
You can do this manually with free tools like mp3DirectCut (https://mpesch3.de/ (https://mpesch3.de/)) for mp3 (and AAC if libfaad2.dll is added) or the more cumbersome LosslessCut (https://github.com/mifi/lossless-cut (https://github.com/mifi/lossless-cut)), but both involve cueing through the file and selecting the cut points by ear (or waveform in the case of mp3DirectCut), then saving them as you go.
Title: Re: Split a single file with a concert to single pieces containing a single track?
Post by: Алексей Долматов on June 05, 2021, 22:38:01
AIMP supports converting with division into separate files (tracks, chapters). To do this, you need use a CUE-list, which contains the time stamp.
Title: Re: Split a single file with a concert to single pieces containing a single track?
Post by: Biff on June 05, 2021, 22:49:35
Thank you very much for the links, I will try those programs.

Quote
AIMP supports converting with division into separate files (tracks, chapters). To do this, you need use a CUE-list, which contains the time stamp.
How does one do that? In the Audio concerter? And / or how can I make that cue-list?
(https://i.imgur.com/L2EubcD.png)
Title: Re: Split a single file with a concert to single pieces containing a single track?
Post by: Алексей Долматов on June 05, 2021, 23:29:12
Add CUE in converter.
Create, example, in Notepad.
CUE extension.
Internal:
Code: [Select]
TITLE "Default description"
PERFORMER "Default name"
REM GENRE "Default Genre"
FILE "FILE_NAME.EXTENSION" FORMAT
TRACK 01 AUDIO
  INDEX 01 00:00:00
  TITLE "Title 1"
  PERFORMER "name"
TRACK 02 AUDIO
  INDEX 01 04:06:16
  TITLE "Title 2"
  PERFORMER "Name 2"
Code: [Select]
TITLE "Default description"
PERFORMER "Radio Dom Druzhbi"
REM GENRE "Russian"
FILE "01-25-50. Radio Dom Druzhbi.mp3" MP3
TRACK 01 AUDIO
  INDEX 01 00:00:00
  TITLE "На Берегу Безымянной Реки ~2.5"
  PERFORMER "Наутилус-Помпилиус"
TRACK 02 AUDIO
  INDEX 01 04:06:16
  TITLE "Марджанджа"
  PERFORMER "Манвэл"
Title: Re: Split a single file with a concert to single pieces containing a single track?
Post by: Biff on June 06, 2021, 00:49:07
Alright, thank you very much!