Tom Oliver
Here's how to burn audio to a CD from the command line.
SHELL
# Remove spaces from filenamesfor f in *; do mv "$f" `echo $f | tr ' ' '_'`; done# Convert all tracks to wavfor i in $( ls ); do ffmpeg -i $i $i.wav; done# Normalize the volume across all tracksnormalize -m *.wav# Burn to disksudo wodim -v -dev='/dev/cdrom' -audio -pad *.wav