Convert FLAC to MP3 with ffmpeg

Software, electronics, audio-visual topics
Post Reply
User avatar
Mike R
Site Admin
Posts: 64
Joined: Fri Jan 24, 2020 3:40 am

Convert FLAC to MP3 with ffmpeg

Post by Mike R »

converting flac to mp3 with ffmpeg
Bluetooth can't send FLAC files. This is so I can play flac files on the bluetooth in the car.
It spits out mp3's at 320 kbps, which is good enough for any car, and likely better than my ears can discern in that setting.
What works works...
You need to open a terminal window in the folder holding the flac files, and it will spit them out in that same folder.
Bag and tag them after that. It's actually quite fast, even with this old tower.

Code: Select all

find . -name "\*.flac" -exec ffmpeg -i {} -ab 320k -map\_metadata 0 -id3v2\_version 3 {}.mp3 ;
https://stackoverflow.com/questions/261 ... l-metadata
You Wouldn't Believe How Hard I Have to Work to be Lazy
Post Reply