On Wed, Dec 20, 2006 at 07:59:24PM -0000, Ted Harding wrote:
Hi Folks, I have a bunch of MP3s, and would like to convert them to AudioCD files so that I can burn them as succesive tracks on an Audio CD (i.e. in particular, you can pick a track on a CD player, or play the lot through in one go).
Any suggestions?
sox and a for loop?
for i in *.mp3 do sox $i ${i/.mp3}.cdr done
or something like that.
Mike