On Sunday 27 February 2005 12:57, Ted Harding wrote:
Right - now this is where I go to the ol' command line mode as usual, assuming that the wav file is in the right form for throwing on to the CD, which I assume it will be if it's a straight conversion from a .cdr, what you want to do is...
The correct file type for recording *.wav files to CD tracks is "RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz". If your wave file doesn't meet this spec (I've run into some that didn't), use sox to convert it.
helped me get that bit of it right; and the "-audio" option was also essential. Putting all this together, I did
cdrecord -v speed=2 dev=0,0,0 -audio filename.cdr
You can also do multiple tracks (same as the separate tracks on a commercial music CD) with multiple files:
cdrecord ... -audio foo.wav bar.wav ...