How-To Geek
How to Convert .flac Files into 192Kb MP3 Files
If you’ve got a whole folder of .flac files that you want to convert into MP3 files instead, you can do so with a simple command from the terminal—or if you’re using Windows, from a cygwin prompt.
find . -type f -iname '*.flac' | while read FILE; do FILENAME="${FILE%.*}"; flac -cd "$FILE" | lame -b 192 - "${FILENAME}.mp3"; done
This example uses the find command to look for all .flac folders from the current folder as well as subfolders, and then uses the lame utility to convert them.
Convert all .flac from a folder subtree in 192Kb mp3 [commandlinefu.com]
Got Feedback? Join the discussion at discuss.howtogeek.com
Comments (4)
Programmer by day, geek by night, The Geek, also known as Lowell Heddings, spends all his free time bringing you fresh geekery on a daily basis. You can follow him on Google+ if you'd like.
- Published 08/20/10




or you can use Bonkenc
Why 192? I mean if you want it to sound horrid just plug the headphones that came with your mp3 player/ipod into your PC.
192kbs is good enough..
320is better of course,but I think there’s no obvious difference..
Much easier, and propably the best tool for this (drop and drag multiple files) is LamDropXPd from http://www.rarewares.org/mp3-lamedrop.php I have been using this for a very long time. You are able to set de decoding speeds to your liking.