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: Title Length (Read 2848 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

CUE: Title Length

I have ripped the CD "2 Many DJ's - As Heard On Radio Soulwax Pt.2" with EAC and wonder why the title is truncated after 80 characters? Is the CD-Text limited to this length? An can I leave out the PERFORMER and TITLE information and/or restore the CD later on a Mac OSX ? Thank you! Kasper

Code: [Select]
PERFORMER "2 Many DJ's"
TITLE "As Heard On Radio Soulwax Pt.2"
FILE "2 Many DJ's - As Heard On Radio Soulwax Pt.2.wav" WAVE
 TRACK 01 AUDIO
   TITLE "Emerson, Lake & Palmer - Peter Gunn (Live); Basement Jaxx - Where's Your Head..."
   PERFORMER "2 Many DJ's"
   INDEX 00 00:00:00
   INDEX 01 10:00:17
 TRACK 02 AUDIO
   TITLE "Peaches - Fuck The Pain Away"
   PERFORMER "2 Many DJ's"
   INDEX 01 12:49:64

CUE: Title Length

Reply #1
Quote
I have ripped the CD "2 Many DJ's - As Heard On Radio Soulwax Pt.2" with EAC and wonder why the title is truncated after 80 characters? Is the CD-Text limited to this length? An can I leave out the PERFORMER and TITLE information and/or restore the CD later on a Mac OSX ? Thank you! Kasper

Code: [Select]
PERFORMER "2 Many DJ's"
TITLE "As Heard On Radio Soulwax Pt.2"
FILE "2 Many DJ's - As Heard On Radio Soulwax Pt.2.wav" WAVE
 TRACK 01 AUDIO
   TITLE "Emerson, Lake & Palmer - Peter Gunn (Live); Basement Jaxx - Where's Your Head..."
   PERFORMER "2 Many DJ's"
   INDEX 00 00:00:00
   INDEX 01 10:00:17
 TRACK 02 AUDIO
   TITLE "Peaches - Fuck The Pain Away"
   PERFORMER "2 Many DJ's"
   INDEX 01 12:49:64

[a href="index.php?act=findpost&pid=267102"][{POST_SNAPBACK}][/a]

I see your problem. You are putting the track's artist and title in the tag for titles. Here's what I would do:
Code: [Select]
PERFORMER "Various Artists"
TITLE "As Heard on Radio Soulwax (Part 2): Mixed by 2 Many DJ's"
FILE "As Heard on Radio Soulwax (Part 2) - 2 Many DJ's.wav" WAVE
 TRACK 01 AUDIO
   TITLE "Peter Gunn (Live); Where's Your Head [there's enough space now]"
   PERFORMER "Emerson, Lake & Palmer; Basement Jaxx"
   INDEX 00 00:00:00
   INDEX 01 10:00:17
 TRACK 02 AUDIO
   TITLE "Fuck the Pain Away"
   PERFORMER "Peaches"
   INDEX 01 12:49:64


It looks like there's a hidden track there, if you want to unhide it, change INDEX 00 to INDEX 01 and INDEX 01 to INDEX 02. The reason for the methods above is because the CD is a Various Artists CD and therefore each track is performed by different performers/artists/composers. The CD-Text fields can store up to 80 bytes each (this translates to 80 single-byte characters, like Roman letters; or only 40 Japanese/Chinese Kanji; or between 40 and 80 characters if the character set is mixed-byte, like Thai or Arabic (I think)).

PS: There's even another CD-TEXT field, called SONGWRITER, that's not used by CD rippers.

 

CUE: Title Length

Reply #2
Quote
I see your problem. You are putting the track's artist and title in the tag for titles. Here's what I would do:

Code: [Select]
PERFORMER "Various Artists"
TITLE "As Heard on Radio Soulwax (Part 2): Mixed by 2 Many DJ's"
FILE "As Heard on Radio Soulwax (Part 2) - 2 Many DJ's.wav" WAVE
 TRACK 01 AUDIO
   TITLE "Peter Gunn (Live); Where's Your Head [there's enough space now]"
   PERFORMER "Emerson, Lake & Palmer; Basement Jaxx"
   INDEX 00 00:00:00
   INDEX 01 10:00:17
 TRACK 02 AUDIO
   TITLE "Fuck the Pain Away"
   PERFORMER "Peaches"
   INDEX 01 12:49:64


Thank you, this is a good idea!

CUE: Title Length

Reply #3
The MMC-3 specs say:

Quote
The size of a character string is recommended to be less than 160 bytes.

The string requires a terminator, which leaves 159 bytes free.