Batch Converting FLAC to MP3
I came across this neat script somewhere on the internet while trying to batch convert a folder full of FLAC files to mp3 files. Hopefully it will help somebody else:
for file in *.flac; do flac -cd “$file” | lame -b 320 -h – “${file%.flac}.mp3″; done
On my Laptop, I am running Linux Mint 12.
On my home media server, I am running Ubuntu 12.04
Check out my profile for more information.
On my home media server, I am running Ubuntu 12.04
Check out my profile for more information.
Categories: Jon F, Uncategorized

Recent Comments