I have a problem with JAudiotagger on API27(Android 7) of android, when I'm trying to set the tags for my audio file I get this error:
11-24 00:53:20.363 1518-1926/? E/ID3: skipping huge ID3 metadata of size 22934116
The relevant code snippet is this:
TagOptionSingleton.getInstance().setAndroid(true);
Tag tag = audio.getTag();
tag.setField(TITLE,"Some title");
tag.setField(ARTIST, "Some artist");
tag.setField(ALBUM, "Some album");
audio.commit();
This works just fine on API22 (Android 5.something), and it seems that only mp3 files have this issue on API27.
Thanks in advance for the help!
(audio is an AudioFile from JAudiotagger)
This is specific to the MP3, I think you would have the same warning if you had read the same mp3 on API22. It is not an error, however I think this must be old version of jaudiotager since I cannot find this message when I search through the source code.