alistairphillips.com

I’m : a web and mobile developer based in the Australia.


Convert .flac to .mp3 with ffmpeg

As per https://stackoverflow.com/a/33451185/89783 I'm using the following to convert all .flac files to .mp3:

find . -name "*.flac" -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \;