Convert all wma files to mp3 [bash]for i in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm:waveheader "$i" && lame -m j -h –vbr-new -b 160 audiodump.wav -o "`basename "$i" .wma`.mp3"; done; rm -f audiodump.wav[/bash] Related PostsHow to convert epub to pdf on Ubuntu 12.04Reducing ubuntu disk spaceNotesZip each file separately