Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: How to fix "Exception: File must contains at least one audio track" 1 solution (Read 1256 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

How to fix "Exception: File must contains at least one audio track" 1 solution

Tested with CUEtools versions 2.1.6 and 2.1.7.

As I am splitting a whole collection of albums (1800) I came across some errors as I do it in batch.

For the error: Exception: File must contain at least one audio track

I finally found out CUETools doesn't like the TAB characters in cue files while splitting.  Just make sure the space before TRACK. TITLE and whatever line which do NOT start at the beginning of the line spaces as used and NOT the TAB character. See the following examples:

With spaces:

Code: [Select]
PERFORMER "Agalloch"
TITLE "The Grey (E.P.)"
REM DATE 2004
REM GENRE Folk Metal
FILE "(2004) The Grey (E.P.).flac" WAVE
 TRACK 01 AUDIO
    TITLE "The Lodge (Dismantled)"
    INDEX 01 00:00:00
...

Wrong with Tabs (the spacing is larger):

Code: [Select]
PERFORMER "Agalloch"
TITLE "The Grey (E.P.)"
REM DATE 2004
REM GENRE Folk Metal
FILE "(2004) The Grey (E.P.).flac" WAVE
TRACK 01 AUDIO
TITLE "The Lodge (Dismantled)"
INDEX 01 00:00:00
...