python eyed3 eyed3.id3.tag.CommentsAccessor object at 0x7fbb2316d890

833 Views Asked by At

When I try and read the comments from any MP3 file using eyed3 I get given the following error:

eyed3.id3.tag.CommentsAccessor object at 0x7fbb2316d890

Doe's anyone know how to fix this?

track = eyed3.load(name)
print track.tag.comments
2

There are 2 best solutions below

0
On

You can read comments using following code:

track = eyed3.load(name)
print track.comments[0].text
0
On

This worked for me

track = eyed3.load(audio_filename)
print track.tag.comments[0].text
$ pip freeze | grep eyeD3
eyeD3==0.7.9