I convert FLAC
to MP3
using
ffmpeg -i x.flac -f mp3 -vn -b:a 64K x.mp3
and I add album art using
ffmpeg -i x.mp3 -i x.jpg -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" xx.mp3
Is it possible to do it in one step? Because I want to do it during "live" transcoding.