mp3agic icon indicating copy to clipboard operation
mp3agic copied to clipboard

A java library for reading mp3 files and reading / manipulating the ID3 tags (ID3v1 and ID3v2.2 through ID3v2.4).

Results 62 mp3agic issues
Sort by recently updated
recently updated
newest added

When I build project it throws **error: cannot access Path class file for java.nio.file.Path not found** What should I do?

When I remove the ID3 tags and add new one with new album art , the thumbnail of the file is being removed as well. I have tried to add...

Hi, I've stumbled upon what I think is a bug in mp3agic. While testing my own (very buggy) album art puller, I noticed what appears to be an issue with...

I need to read and write the lyrics 3 tags for a project, and I would like to know if this library will support this tag in the future ?

There will be a bug in the Library when an mp3 file will not have any Metatags (iD3 Basic,, iD3v1, iD3v2). An Mp3File Object will not create to search any...

I'd like to use the en dash in titles of my mp3 files. Setting a title to a ID3v2 object which contains the en dash works. But when I save...

**Now:** Mp3File mp3file = new Mp3File("mpthreetest.mp3"); ID3v2 id3v24Tag = new ID3v24Tag(); mp3file.setId3v2Tag(id3v24Tag); id3v24Tag.setArtist("Test"); mp3file.save("mpthreetest.mp3"); (Error: java.lang.IllegalArgumentException: Save filename same as source filename) File file = new File ("mpthreetest.mp3"); Mp3File mp3file...

Hi, I am creating an instance of the Mp3File class from the provided file [Ghostwriter.mp3](https://www.dropbox.com/s/ajlo9c3p1vp2ts4/Ghostwriter.mp3?dl=0) and get the following stacktrace: ``` Caused by: com.mpatric.mp3agic.InvalidDataException: Premature end of tag at com.mpatric.mp3agic.AbstractID3v2Tag.unpackTag(AbstractID3v2Tag.java:143)...

Hello i have the same issue as #141 , after i downgrade to 0.9.0 version, i have this error. ![captura de pantalla 2017-11-28 a la s 17 41 44](https://user-images.githubusercontent.com/4725556/33350273-8bcbe16e-d463-11e7-91b1-526af6c4208b.jpg) Is...

Hi Does this lib support chapter frame http://id3.org/id3v2-chapters-1.0? Thanks