This command finds all Flac files and then converts them to mp3 with FFMPEG keeping meta data.
find . -name "*.flac" -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \;
This command finds all Flac files and then converts them to mp3 with FFMPEG keeping meta data.
find . -name "*.flac" -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \;