View Single Post
  #9  
Old 29-10-2010, 08:19 AM
mithrandir's Avatar
mithrandir (Andrew)
Registered User

mithrandir is offline
 
Join Date: Jan 2009
Location: Glenhaven
Posts: 4,161
Quote:
Originally Posted by [1ponders] View Post
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.
Reply With Quote