- Just fire up Synaptic and add the Lame and FAAD packages
- Create a new shell script with the following text:
for i in *.m4a; do
echo "Converting: ${i%.m4a}.mp3"
faad -o - "$i" | lame - "${i%.m4a}.mp3"
done
- save the script as mp42mp3
- copy the file to the /bin/ folder and make it executable (you will need to sudo)
- Open a terminal window in the folder you wish to convert M4A's and type m4a2mp3 and the script will convert all the files to MP3
Nice, will try tonight.
ReplyDelete