Converting flac files to ogg
Posted by tread on February 23, 2007
For some reason, whatever I saw on the net used bash – this has a lot of pitfalls, mainly spaces in names. Here is a better command:
find . -name "*flac" -exec oggenc -q 7 {} \;
-q 7 sets the quality, 10 being the highest.
Converting flac files to ogg « Microwave Biscuit said
[...] flac files to ogg This post by Eclectic – Converting flac files to ogg « Eclectic – seems innocent enough – just a tip on how to encode music files from flac to ogg. However this [...]