How To Convert a Batch of OGGS to MP3s with Linux

I have 12 CD's of French Language instruction that I stupidly ripped to ogg instead of mp3 (thinking it was somehow better for my karma).  Of course, when I later went to put them on my iPod, I was out of luck (and didn't really want to risk putting ipodlinux on a newer video iPod).
Once again, ffmpeg to the rescue with some help from find. This command will find all ogg files, starting with the current directory, and convert them to mp3. The {} and \; syntax of find takes a little getting used to.
find . -iname "*ogg" -exec ffmpeg -i "{}" "{}.mp3" \;

Categories

,
| Comments (0)TrackBacks (0)

0 TrackBacks

Listed below are links to blogs that reference this entry: How To Convert a Batch of OGGS to MP3s with Linux.

TrackBack URL for this entry: http://www.rootsilver.com/mt-tb.cgi/16

Leave a comment