FFMPEG is really a great tool. I know it can edit ID3 tags and even remove all tags in a row :
ffmpeg -i tagged.mp3 -map_metadata -1 untagged.mp3
But even after that, there's still the cover image.
I don't know how to remove it using ffmpeg. I know there's other soft out there that can do the job - like eyed3 - but what's the point to install it if ffmpeg can do it too, in one line, while encoding the audio ?
The cover image/album art is treated as a video stream by ffmpeg. To omit it you can use the -vn
or -map
options.
In this example the audio is being stream copied (re-muxed) instead of being re-encoded. This is faster and will not degrade the quality:
ffmpeg -i tagged.mp3 -vn -codec:a copy -map_metadata -1 out.mp3
-map
instead of -vn
Or you could use the -map
option to explicitly choose the streams. Using -map 0:a
tells ffmpeg to only select the audio stream(s) from input 0
(the first input and the only input in your case):
ffmpeg -i tagged.mp3 -map 0:a -codec:a copy -map_metadata -1 out.mp3
I prefer -map
because it is very flexible.