So I am trying to edit the tags of music files in my app. This is the code
TagOptionSingleton.getInstance().setAndroid(true);
AudioFile f = AudioFileIO.read(sel);
Tag tag = f.getTag();
tag.setField(FieldKey.TITLE, "ABC");
f.commit();
I have tried AudioFileIO.write(f)
instead of f.commit()
but the changes that I make are not reflected in the files. They still have the same old data.
I have tried a number of versions of JAudioTagger but no luck. Can someone please help me. Thanks in advance !!
I know it is a bit late but the following works for me (I use the same framework for the other tags
and to set the title