MP3 CD Burning
These are my notes for burning an audio CD from mp3 files. It works for me. You're responsible for making it work for you. If you need help, try reading the Linux MP3 CD Burning mini-HOWTO.
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done cdrecord dev=0,0,0 speed=4 -pad -audio *.wav
If you need to resample *.wav files, do:
sox -r X input_file.wav -r Y output_file.wav polyphase
where X and Y and sample rates in Hertz for the input and output file respectively.