I have found that it works fine if I put the data track first, but I would like to put it last just in case someone with a really old CD player tries to play the disk..
The following works ->
// Flinders University Choral Society - Concert 2003-05-18
CD_ROM_XA
CD_TEXT {
LANGUAGE_MAP {
0 : EN
}
LANGUAGE 0 {
TITLE "Concert 2003-05-18"
PERFORMER "Flinders University Choral Society"
}
}
// Track 2 - concert1a.wav
TRACK AUDIO
CD_TEXT {
LANGUAGE 0 {
COMPOSER "NFI"
TITLE "Movt 1 (solo Tania Cavaiuolo, trumpet Dave Elton)"
}
}
PREGAP 00:01:00
FILE "concert1a.wav" 0
However, if I swap the track order around I get this ->
Power calibration successful.
Writing lead-in and gap...
Writing track 01 (mode AUDIO/AUDIO )...
Writing track 02 (mode MODE1/AUDIO )...
Wrote 46 of 46 MB (Buffer 100%).
Wrote 20857 blocks. Buffer fill min 100%/max 100%.
Writing lead-out...
Wrote 15 of 15 MB.
Flushing cache...
Writing finished successfully.
And nothing is able to access the data track, except for dd'ing it off the drive directly. So maybe cdrdao does the right thing but none of the platforms I have are smart enough :)
Has anyone made a mixed audio/data CD track with the audio tracks first that works properly?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am trying to make a mixed audio/data CD.
I have found that it works fine if I put the data track first, but I would like to put it last just in case someone with a really old CD player tries to play the disk..
The following works ->
// Flinders University Choral Society - Concert 2003-05-18
CD_ROM_XA
CD_TEXT {
LANGUAGE_MAP {
0 : EN
}
LANGUAGE 0 {
TITLE "Concert 2003-05-18"
PERFORMER "Flinders University Choral Society"
}
}
// Track 1 - mp3s
TRACK MODE1
DATAFILE "mp3track.iso"
// Track 2 - concert1a.wav
TRACK AUDIO
CD_TEXT {
LANGUAGE 0 {
COMPOSER "NFI"
TITLE "Movt 1 (solo Tania Cavaiuolo, trumpet Dave Elton)"
}
}
PREGAP 00:01:00
FILE "concert1a.wav" 0
However, if I swap the track order around I get this ->
Power calibration successful.
Writing lead-in and gap...
Writing track 01 (mode AUDIO/AUDIO )...
Writing track 02 (mode MODE1/AUDIO )...
Wrote 46 of 46 MB (Buffer 100%).
Wrote 20857 blocks. Buffer fill min 100%/max 100%.
Writing lead-out...
Wrote 15 of 15 MB.
Flushing cache...
Writing finished successfully.
And nothing is able to access the data track, except for dd'ing it off the drive directly. So maybe cdrdao does the right thing but none of the platforms I have are smart enough :)
Has anyone made a mixed audio/data CD track with the audio tracks first that works properly?