HydrogenAudio

Hosted Forums => foobar2000 => General - (fb2k) => Topic started by: vries085 on 2005-04-11 19:02:11

Title: problem with cue-sheet & fb2k
Post by: vries085 on 2005-04-11 19:02:11
I've got a problem with fb2k when reading cus-sheets wich acttually have entries of one adiofile per song, something like (let's say the cue-sheet contains 3 songs):

PERFORMER "2002"
TITLE "2002 Sacred Well"
FILE  "01 Stardust.mp3" MP3
  TITLE "Stardust"
  TRACK 01 AUDIO
    INDEX 01 00:00:00
FILE  "02 City of Peace.mp3" MP3
  TITLE "City of Peace"
  TRACK 02 AUDIO
    INDEX 01 00:00:00
FILE  "03 Lovers' Bridge.mp3" MP3
  TITLE "Lovers' Bridge"
  TRACK 03 AUDIO
    INDEX 01 00:00:00

when I open this cue sheet in fb2k, it displays the tracklist as follows:
01. 2002 - [2002 Sacred Well #01] City of Peace [4:32]
02. 2002 - [2002 Sacred Well #02] Lovers' Bridge [4:31]
03. 2002 - 2002.cue [4:27]

The first title is missing, all other titles are moved up one place, and the last title is not recognized.

Does anyone have a clue for this behaviour (and possibly to solve it)???
Title: problem with cue-sheet & fb2k
Post by: Gambit on 2005-04-11 20:45:09
Your cue sheet is broken.

The TRACK and TITLE fields are swapped. It should look like this:

Code: [Select]
PERFORMER "2002"
TITLE "2002 Sacred Well"
FILE "01 Stardust.mp3" MP3
 TRACK 01 AUDIO
   TITLE "Stardust"
   INDEX 01 00:00:00
FILE "02 City of Peace.mp3" MP3
 TRACK 02 AUDIO
   TITLE "City of Peace"
   INDEX 01 00:00:00


And so on...

How did you create that cue sheet?
Title: problem with cue-sheet & fb2k
Post by: vries085 on 2005-04-12 05:43:24
I generated the CUE-sheet myself, based on a the files in a directory.
It's an action to use only one type of file (.cue) for entries in the database.

I tried it this afternoon, and it works perfect!!
Thanks
Fred

Quote
Your cue sheet is broken.

The TRACK and TITLE fields are swapped. It should look like this:

Code: [Select]
PERFORMER "2002"
TITLE "2002 Sacred Well"
FILE "01 Stardust.mp3" MP3
 TRACK 01 AUDIO
   TITLE "Stardust"
   INDEX 01 00:00:00
FILE "02 City of Peace.mp3" MP3
 TRACK 02 AUDIO
   TITLE "City of Peace"
   INDEX 01 00:00:00


And so on...

How did you create that cue sheet?
[a href="index.php?act=findpost&pid=289812"][{POST_SNAPBACK}][/a]