mpatric / mp3agic

A java library for reading mp3 files and reading / manipulating the ID3 tags (ID3v1 and ID3v2.2 through ID3v2.4).
MIT License
1.2k stars 310 forks source link

Id3v2 chapter frame? #133

Open gAmUssA opened 7 years ago

gAmUssA commented 7 years ago

Hi

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

Thanks

tmzkt commented 7 years ago

Yes, I believe the library does support this.

ID3v2 id3v2Tag = mp3file.getId3v2Tag();
id3v2Tag.getChapters();

Let me know if I can close this issue. If a response is not received in 7 days, I will close the issue.

gAmUssA commented 7 years ago

Thank you

gAmUssA commented 7 years ago

correct me if I'm wrong but chapter's frame doesn't see to be completed. Could you point me to the way how to extract subframes with text info with chapter name and chapter description?

also, chapter's start and end time. is it in seconds?

Thank you