Zamphatta
Zamphatta

Reputation: 4734

Reading ID3 Tags in Python 3

I'm stuck. I'm trying to find a way to read ID3 tags in an MP3 & FLAC files in Python 3. Everywhere I turn, the answer is about some library or module that only works in Python 2, including questions I've found on this subject here at StackOverflow. Does anyone know of a module that works with Python 3?

Upvotes: 3

Views: 4279

Answers (2)

José Luis
José Luis

Reputation: 3943

I had the same problem, so I wrote my own library, supports MP3 and OGG files, take a look to the documentation:

http://pytag.rtfd.org

Upvotes: 1

Shonu93
Shonu93

Reputation: 876

Check out this project called stagger !

Upvotes: 2

Related Questions