"convert .flac to .mp3 with ffmpeg, keeping all metadata" Code Answer

5

the following command keeps high quality on .mp3 (320 kbps), and metadata from .flac file are converted to id3v2 format, which can be included in .mp3 files:

ffmpeg -i input.flac -ab 320k -map_metadata 0 -id3v2_version 3 output.mp3
By Kazuki Sakamoto on September 28 2022

Answers related to “convert .flac to .mp3 with ffmpeg, keeping all metadata”

Only authorized users can answer the Search term. Please sign in first, or register a free account.