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 ?
Simply select the track, or tracks, that you wish to remove ID3 tags for, then right click them in the Music Tag file list. On the menu that appears, click the "Remove Tags" option.
An ID3 tag is a type of metadata container used to store information into a media file (traditionally an MP3 audio file). The ID3 tags could include a title, an album title, the artist (author), genre, cover art, the year recorded and other details that are useful for the listener of your show.
ID3 tags are metadata stored within MP3 files that contains information such as; the title of the podcast or episode, the artist, and an image artwork for the episode. There are two versions of the ID3 tags. ID3v1 contains only basic, text-only, information and it's placed at the end of the audio file.
ID3 tags are a critical component of audio files, particularly MP3s. In simple terms, ID3 tags are the metadata for an audio file to make sure they are displayed correctly in computer software such as a DAW, a DJ streaming software, or a music streaming app like Apple Music.
ffmpeg -i input.mp3 -map 0:a -c:a copy -map_metadata -1 output.mp3
-map 0:a
Includes only audio (omits all images). See FFmpeg Wiki: Map for more details.-c:a copy
Enables stream copy mode so re-encoding is avoided.-map_metadata -1
Omits all metadata.I've tried to use codes provided by LordNeckbeard, none of them worked for my case. But this one worked:
ffmpeg -i tagged.mp3 -acodec copy -map 0 -map_metadata 0:s:0 notags.mp3
It shows now only one tag, 'TSSE' (means Encoder). Also, very recommend this article, if you want to manipulate ID3 tags using ffmpeg:
How To: Create/Write ID3 tags using ffmpeg
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With