I have been working with eyed3 for a while now and I have been using it to extract the genre of the mp3 files this way
import eyed3
audiofile = eyed3.load(path)
print audiofile.tag.genre.name
Now I have a URL like this, www.example.com/abc.mp3
.
This does not work and gives me
IOError: file not found: www.example.com/abc.mp3
My question being, does eyed3.load()
not support remote url? is there any workaround for this or any other library that could be suggested.
Thanks in advance.