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: .cue file is empty/object not found (Read 1523 times) previous topic - next topic
0 Members and 3 Guests are viewing this topic.

.cue file is empty/object not found

I don't know if there is a specific setting i missed when looking for issues but the program/player doesn't start when i try to play my .cue archive. You can look the code of the certain archive here:

Code: [Select]
PERFORMER "Radiohead"
TITLE "MINIDISCS [HACKED] - MD111: Sounds + Ideas"
FILE "Radiohead - MINIDISCS -HACKED- - 01 MD111.mp3"
REM MINIDISCS [HACKED] - AccurateCues v1.0 - by SelfDenyingPity
  TRACK 01 AUDIO
    PERFORMER "Thom Yorke"
    TITLE "Poison <aka Exit Music/Life In A Glasshouse>"
    INDEX 01 00:00:00
  TRACK 02 AUDIO
    PERFORMER "Radiohead"
    TITLE "I Promise (Portland)"
    INDEX 01 01:39:40
  TRACK 03 AUDIO
    PERFORMER "Radiohead"
    TITLE "Attenzione! (Portland)"
    INDEX 01 05:33:58
  TRACK 04 AUDIO
    PERFORMER "Radiohead"
    TITLE "Electioneering {MD111 #1} ‡"
    INDEX 01 10:35:55
  TRACK 05 AUDIO
    PERFORMER "Radiohead"
    TITLE "Attenzione! (Portland) ‡"
    INDEX 01 10:50:67
  TRACK 06 AUDIO
    PERFORMER "Radiohead"
    TITLE "Electioneering {MD111 #1}"
    INDEX 01 10:54:02
  TRACK 07 AUDIO
    PERFORMER "Radiohead"
    TITLE "Lift (Toronto) *"
    INDEX 01 13:01:70
  TRACK 08 AUDIO
    PERFORMER "Radiohead"
    TITLE "True Love Waits {MD111} *"
    INDEX 01 15:38:67
  TRACK 09 AUDIO
    PERFORMER "Radiohead"
    TITLE "Not For Sale"
    INDEX 01 22:12:53
  TRACK 10 AUDIO
    PERFORMER "Dave Grusin"
    TITLE "[film a] <aka Yellow Panic>"
    INDEX 01 23:24:23
  TRACK 11 AUDIO
    PERFORMER "Radiohead"
    TITLE "Lift (San Francisco)"
    INDEX 01 24:08:53
  TRACK 12 AUDIO
    PERFORMER "Radiohead"
    TITLE "<tape blip>"
    INDEX 01 28:12:00
  TRACK 13 AUDIO
    PERFORMER "Radiohead"
    TITLE "Electioneering (San Francisco) *"
    INDEX 01 28:16:38
  TRACK 14 AUDIO
    PERFORMER "Radiohead"
    TITLE "I Promise (San Francisco)"
    INDEX 01 31:54:17
  TRACK 15 AUDIO
    PERFORMER "Thom Yorke"
    TITLE "Vacancies"
    INDEX 01 36:20:05
  TRACK 16 AUDIO
    PERFORMER "Thom Yorke"
    TITLE "$alty"
    INDEX 01 37:18:16
  TRACK 17 AUDIO
    PERFORMER "Radiohead"
    TITLE "Airbag (acoustic)"
    INDEX 01 37:56:55
  TRACK 18 AUDIO
    PERFORMER "Radiohead"
    TITLE "Airbag (Toronto) *"
    INDEX 01 43:08:08
  TRACK 19 AUDIO
    PERFORMER "Radiohead"
    TITLE "I Promise (Minneapolis)"
    INDEX 01 48:18:39
  TRACK 20 AUDIO
    PERFORMER "Thom Yorke"
    TITLE "Lifesaver"
    INDEX 01 52:21:04
  TRACK 21 AUDIO
    PERFORMER "Radiohead"
    TITLE "I Promise (Toronto)"
    INDEX 01 53:11:43
  TRACK 22 AUDIO
    PERFORMER "Radiohead"
    TITLE "Electioneering (Toronto)"
    INDEX 01 57:14:37
  TRACK 23 AUDIO
    PERFORMER "Radiohead"
    TITLE "Paranoid Android {MD111} *"
    INDEX 01 60:45:36
  TRACK 24 AUDIO
    PERFORMER "Radiohead"
    TITLE "Airbag {MD111}"
    INDEX 01 65:28:40
  TRACK 25 AUDIO
    PERFORMER "Radiohead"
    TITLE "Electioneering {MD111 #2}"
    INDEX 01 67:32:38

Am i doing something wrong? 'Cause i have removed the "MP3" from the FILE line as i was supposed to, yet the archive doesn’t even start and says it is "empty".



Moderator: moved cue to codebox

Re: .cue file is empty/object not found

Reply #1
I don't play Image + CUE on my device but in the CUE syntax
a FILE command needs a TYPE specified after the filename
Code: [Select]
FILE "filename" TYPE

If the original was
Code: [Select]
FILE "Radiohead - MINIDISCS -HACKED- - 01 MD111.mp3" MP3
and that didn't work, try
Code: [Select]
FILE "Radiohead - MINIDISCS -HACKED- - 01 MD111.mp3" WAVE


Edit: Valid file types are WAVE, MP3, AIFF, BINARY and MOTOROLA, so you can't just make something up.
korth

Re: .cue file is empty/object not found

Reply #2
I don't play Image + CUE on my device but in the CUE syntax
a FILE command needs a TYPE specified after the filename
Code: [Select]
FILE "filename" TYPE

If the original was
Code: [Select]
FILE "Radiohead - MINIDISCS -HACKED- - 01 MD111.mp3" MP3
and that didn't work, try
Code: [Select]
FILE "Radiohead - MINIDISCS -HACKED- - 01 MD111.mp3" WAVE


Edit: Valid file types are WAVE, MP3, AIFF, BINARY and MOTOROLA, so you can't just make something up.


Hmmm... Yeah. The file came exactly as you pointed out, with MP3 at the end of the line indicating the file type. Although it didn’t work the first time, i removed it, as i mentioned in my post i made yesterday. But it still refuses to work, even after replacing MP3 with WAVE. I don't know what i should do now because a very few people seem to have the same problem as mine.

Re: .cue file is empty/object not found

Reply #3
Sorry for early misleading reply. I have just another quetstion concerning processing .cue file:
I have a similar .cue problem to use foobar at the Jellyfin media server sources. The music file type is *.WAV, foobar just simply recognizes the direct *.WAV file and can play it well. It just ignores the .cue file! But foobar can recognize and play local .cue correctly. I guess the problem exists in Jellyfin interface.

Re: .cue file is empty/object not found

Reply #4
@Borconi   Maybe file encoding.
Tested the modified CUE with a dummy mp3 on an old phone and works for me.
Android v8.1.0
foobar2000 mobile v1.6.4

Attached CUE is ANSI

korth

Re: .cue file is empty/object not found

Reply #5
@korth Nope. Not working. I think that the encoding supported is UTF-8? I might be wrong, though, 'cause i don't know if the encoding was already UTF-8 or not. Also, i think it is more of a location problem, since Foobar2000 gives me a pop-up saying that the object was not found.
Edit: mention user

Re: .cue file is empty/object not found

Reply #6
The original CUE specification says ANSI but UTF-8 is also supported foobar2000.
I only stepped in because I saw an obvious error in the text of the CUE you posted. I cannot assist further.
korth