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?
Take a look at this example for retagging: https://github.com/mpatric/mp3agic-examples/blob/master/src/main/java/com/mpatric/mp3agic/app/Mp3Retag.java#L94
This might be the best solution, because you can not delete but just read and write the image as far as I know.
I hope this helps you to find a solution