How to add album art with ffmpeg?

With Recent version, ffmpeg -i in.mp3 -i test.png -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title=”Album cover” -metadata:s:v comment=”Cover (front)” out.mp3 Use -map to associate input stream to the output Use -c copy to directly demux/remux The -id3v2_version 3 is what is missing in your command line. Note that that wil write an … Read more