Quote:
Originally Posted by [1ponders]
Edit: Too easy. For a change with iTunes  . Thanks Steffan
|
Without having seen Steffan's post I would have said ffmpeg. The hardest part on Windoze is scripting the loop. If you have cygwin:
Code:
find . -iname \*m4a | while read old ; do ffmpeg -i "$old" -acodec mp3 -ac 2 -ab 128 "${old%m4a}mp3" ; done
You might have to fiddle with the bit rate.