I'm using mp3agic to edit mp3 tags automatically, so that my radio displays everything the way I like it. However, my radio seems to hate big album art images, resulting in not parsing the rest of the mp3 tag. Hence, I want to use mp3agic to remove all cover art. There is a method named ID3v2.setAlbumImage(byte[] albumImage, String mimeType)
which is implemented by the AbstractID3v2Tag
as seen here. First I thought about throwing in null
values, but after looking at the code this has no effect.
Question: How can I delete existing album art with the setAlbumImage
method? Is there a better suited method?