UNPKG

261 BPlain TextView Raw
1import eyed3
2
3audiofile = eyed3.load("test.mp3")
4for tag in audiofile.tag.chapters:
5 print(tag.id)
6 print(tag.element_id)
7 print(tag.times)
8 print(tag.offsets)
9 for key, subframe in tag.sub_frames.items():
10 print(subframe[0].text)
\No newline at end of file