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: not understanding cue sheet errors, need help please (Read 919 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

not understanding cue sheet errors, need help please

I keep thinking I finally figured out cue sheets, but then a new one will stump me, and I have no idea what to do.

I'm trying to open this cue in foobar2000. It will play the first track, but then I get an error for the remaining tracks. I thought console should show the error line, but it doesn't show an error line. Please, what do I have to do to fix cue sheet?

file - ''The Who - Who's Next.m4a''

Code: [Select]
REM GENRE "Rock"
REM DATE "1971"
PERFORMER "The Who"
TITLE "Who's Next"
REM COMMENT "From UK Cassette"
FILE "The Who - Who's Next.m4a" WAVE
REM LABEL " Track Record"
REM LABELNUMBER "3191 005"

TRACK 01 AUDIO
TITLE "Baba O'Riley"
PERFORMER "The Who"
INDEX 01 00:00:00

TRACK 02 AUDIO
TITLE "Getting in Tune"
PERFORMER "The Who"
INDEX 01 05:00:00

TRACK 03 AUDIO
TITLE "Love Ain't for Keeping"
PERFORMER "The Who"
INDEX 01 09:52:04

TRACK 04 AUDIO
TITLE "My Wife"
PERFORMER "The Who"
INDEX 01 12:07:00

TRACK 05 AUDIO
TITLE "Song is Over"
PERFORMER "The Who"
INDEX 01 15:47:00

TRACK 06 AUDIO
TITLE "Bargain"
PERFORMER "The Who"
INDEX 01 22:10:00

TRACK 07 AUDIO
TITLE "Going Mobile"
PERFORMER "The Who"
INDEX 01 27:52:00

TRACK 08 AUDIO
TITLE "Behind Blue Eyes"
PERFORMER "The Who"
INDEX 01 31:39:00

TRACK 09 AUDIO
TITLE "Won't Get Fooled Again"
PERFORMER "The Who"
INDEX 01 35:24:00


MOD Edit: move text for CUE to code


Re: not understanding cue sheet errors, need help please

Reply #1
I cannot duplicate your issue. I used a 'dummy' 60 minute m4a file named as above and created a CUE using the exact text from above. Every track plays without error.
Syntax is not pretty but extra spaces and blank lines are not supposed to matter.
Perhaps it would be helpful to provide the 'exact' error messages you are receiving.

foobar2000 v1.6.16 (portable) Win 11
korth

Re: not understanding cue sheet errors, need help please

Reply #2
Hey, thanks for the help. I opened console, and this is what is says when I try to play track #2. Track #1 plays good.

Unable to open item for playback (Unsupported format or corrupted file):
"C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 9

and here is the entire thing

Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 1
Device: Speakers / Headphones (Realtek Audio)
Mix format: 48000 Hz / 32-bit float / 2 channels (0x3)
Sending stream: 48000 Hz / 32-bit float / 2 channels (0x3)
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 2
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 3
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 4
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 5
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 6
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 7
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 8
Opening track for playback: "C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 9
Unable to open item for playback (Unsupported format or corrupted file):
"C:\Users\mike\Desktop\m\The Who\1971 - Who's Next [UK cassette] (!broken cue!)\next.cue" / index: 9
Automatic resampling: using Resampler (dBpoweramp/SSRC), Resampler (RetroArch)


edit - now i'm wondering what is that ''automatic resampling: using  Resampler (dBpoweramp/SSRC), Resampler (RetroArch)'' line mean?? i thought i had everything on default settings, so what does automatic resampling resampler do?? sorry for so many questions lol

Re: not understanding cue sheet errors, need help please

Reply #3
The CUE sheet itself is fine; I tested it yesterday replacing your m4a with a flac image I have.
Is the m4a itself ok? Have you tried replacing it with another?
I noticed you have DSP's active, have you tried disabling all of them? Alternatively, try the CUE in a portable foobar install.

 

Re: not understanding cue sheet errors, need help please

Reply #4
What SimBun said  :)
Here's the CUE re-written using standard line spacing and indent.

Code: [Select]
REM GENRE "Rock"
REM DATE 1971
PERFORMER "The Who"
TITLE "Who's Next"
REM COMMENT "From UK Cassette"
REM LABEL "Track Record"
REM LABELNUMBER "3191 005"
FILE "The Who - Who's Next.m4a" WAVE
  TRACK 01 AUDIO
    TITLE "Baba O'Riley"
    PERFORMER "The Who"
    INDEX 01 00:00:00
  TRACK 02 AUDIO
    TITLE "Getting in Tune"
    PERFORMER "The Who"
    INDEX 01 05:00:00
  TRACK 03 AUDIO
    TITLE "Love Ain't for Keeping"
    PERFORMER "The Who"
    INDEX 01 09:52:04
  TRACK 04 AUDIO
    TITLE "My Wife"
    PERFORMER "The Who"
    INDEX 01 12:07:00
  TRACK 05 AUDIO
    TITLE "Song is Over"
    PERFORMER "The Who"
    INDEX 01 15:47:00
  TRACK 06 AUDIO
    TITLE "Bargain"
    PERFORMER "The Who"
    INDEX 01 22:10:00
  TRACK 07 AUDIO
    TITLE "Going Mobile"
    PERFORMER "The Who"
    INDEX 01 27:52:00
  TRACK 08 AUDIO
    TITLE "Behind Blue Eyes"
    PERFORMER "The Who"
    INDEX 01 31:39:00
  TRACK 09 AUDIO
    TITLE "Won't Get Fooled Again"
    PERFORMER "The Who"
    INDEX 01 35:24:00
korth

Re: not understanding cue sheet errors, need help please

Reply #5
The CUE sheet itself is fine; I tested it yesterday replacing your m4a with a flac image I have.
Is the m4a itself ok? Have you tried replacing it with another?
I noticed you have DSP's active, have you tried disabling all of them? Alternatively, try the CUE in a portable foobar install.

What SimBun said  :)
Here's the CUE re-written using standard line spacing and indent.

Code: [Select]
REM GENRE "Rock"
REM DATE 1971
PERFORMER "The Who"
TITLE "Who's Next"
REM COMMENT "From UK Cassette"
REM LABEL "Track Record"
REM LABELNUMBER "3191 005"
FILE "The Who - Who's Next.m4a" WAVE
  TRACK 01 AUDIO
    TITLE "Baba O'Riley"
    PERFORMER "The Who"
    INDEX 01 00:00:00
  TRACK 02 AUDIO
    TITLE "Getting in Tune"
    PERFORMER "The Who"
    INDEX 01 05:00:00
  TRACK 03 AUDIO
    TITLE "Love Ain't for Keeping"
    PERFORMER "The Who"
    INDEX 01 09:52:04
  TRACK 04 AUDIO
    TITLE "My Wife"
    PERFORMER "The Who"
    INDEX 01 12:07:00
  TRACK 05 AUDIO
    TITLE "Song is Over"
    PERFORMER "The Who"
    INDEX 01 15:47:00
  TRACK 06 AUDIO
    TITLE "Bargain"
    PERFORMER "The Who"
    INDEX 01 22:10:00
  TRACK 07 AUDIO
    TITLE "Going Mobile"
    PERFORMER "The Who"
    INDEX 01 27:52:00
  TRACK 08 AUDIO
    TITLE "Behind Blue Eyes"
    PERFORMER "The Who"
    INDEX 01 31:39:00
  TRACK 09 AUDIO
    TITLE "Won't Get Fooled Again"
    PERFORMER "The Who"
    INDEX 01 35:24:00

Ok thanks for all the help guys. Yes I also tried fixing the spaces with the cue sheet myself, and i just tried the one you posted here, but it is still not playing track #2 and up. Also, I checked in the settings for my ''active dsps'' and it is empty. How can you tell I have active dsps?? I remember a while ago i was playing some SACD's in foobar, but i thought i reset all the settings after i was done with them.
Also, when i load the cue sheet in foobar, it does show track times for every track except the last one ''Won't Get Fooled Again'', has a question mark instead of the track length. Could that be a clue what is going wrong?

edit 2. ok i just figured it out lol. I had to double click the .m4a file, and not  the cue file. that was the problem!, Ive never had that happen before. everytime I've been able to just double click the cue file for it to load in foobar and play good. this is the first time the cue file would always give me that error with tracks 2 and up. but i just randomly tried double clicking the .m4a instead and all the files play fine now. I have no idea why. but thanks again everybody.