Archive for February, 2012

How to convert FLAC to MP3 on command line

Sunday, February 19th, 2012
First install ffmpeg (WinFF on Windows) and LAME. Then to convert a .flac to .mp3 type this on the command line:

ffmpeg -i "xxx.flac" -acodec libmp3lame -ab 128000 "xxx.mp3"