CUE sheets are mainly used when ripping an entire CD to a single file
and essentially become a Table of Contents, with track information and
queue points, so that the playback (or burning) software know where
tracks begin.  They can also contain metadata such as album and track
titles, genre and performer.

They can also be generated for individual files, which is what you're
looking for.  Here's an example.  Should be easy enough to whip up a
program to generate these.


Code:
--------------------
    
  REM GENRE Reggae
  REM DATE 1984
  PERFORMER "Bob Marley"
  TITLE "Legend"
  FILE "01 Is This Love.flac" WAVE
  TRACK 01 AUDIO
  TITLE "Is This Love"
  PERFORMER "Bob Marley"
  INDEX 01 00:00:00
  FILE "02 No Woman No Cry.flac" WAVE
  TRACK 02 AUDIO
  TITLE "No Woman No Cry"
  PERFORMER "Bob Marley"
  INDEX 01 00:00:00
  FILE "03 Could You Be Loved.flac" WAVE
  TRACK 03 AUDIO
  TITLE "Could You Be Loved"
  PERFORMER "Bob Marley"
  INDEX 01 00:00:00
  
--------------------


Squeezebox Server supports additional metadata in CUE sheets using REM
statements at both the album and track levels, including things like
ALBUMARTIST, ARTISTSORT and REPLAY_GAIN.


Code:
--------------------
    
  REM GENRE Reggae
  REM DATE 1984
  PERFORMER "Bob Marley"
  TITLE "Legend"
  REM ARTISTSORT "Marley, Bob"
  REM REPLAYGAIN_ALBUM_GAIN +1.83 dB
  REM REPLAYGAIN_ALBUM_PEAK 0.999420
  FILE "01 Is This Love.flac" WAVE
  TRACK 01 AUDIO
  TITLE "Is This Love"
  REM REPLAYGAIN_TRACK_GAIN +2.02 dB
  REM REPLAYGAIN_TRACK_PEAK 0.808167
  INDEX 01 00:00:00
  FILE "02 No Woman No Cry.flac" WAVE
  TRACK 02 AUDIO
  TITLE "No Woman No Cry"
  REM REPLAYGAIN_TRACK_GAIN -0.86 dB
  REM REPLAYGAIN_TRACK_PEAK 0.999420
  INDEX 01 00:00:00
  FILE "03 Could You Be Loved.flac" WAVE
  TRACK 03 AUDIO
  TITLE "Could You Be Loved"
  REM REPLAYGAIN_TRACK_GAIN +1.88 dB
  REM REPLAYGAIN_TRACK_PEAK 0.825348
  INDEX 01 00:00:00
  
--------------------


http://wiki.hydrogenaudio.org/index.php?title=Cuesheet


-- 
JJZolx

Jim
------------------------------------------------------------------------
JJZolx's Profile: http://forums.slimdevices.com/member.php?userid=10
View this thread: http://forums.slimdevices.com/showthread.php?t=73952

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping

Reply via email to