Tags: #audio #instructions # Convert FLAC to 320kbps MP3 My tool of choice for doing this is [[ffmpeg]]. ## Command ``` ffmpeg -i "C:\path\to\input\file.flac" -b:a 320k -vn -y -map_metadata 0 -id3v2_version 3 "C:\path\to\output\file.mp3" ``` ## Explanation `-i` specifies the input file path will follow `-b:a 320k` specifies 320kbps audio `-vn` strips video `-y` overwrites output file `-map_metadata` retains the metadata from the input file