tags - Get mp3 info from link with python -


i'm looking ways mp3 file's informations(such track lenght, title, album, ...) url, there way python 2.7 without downloading mp3?

mp3 data embedded in mp3 file:

class mp3fileinfo(fileinfo):     "store id3v1.0 mp3 tags"     tagdatamap = {"title" : ( 3, 33, stripnulls),     "artist" : ( 33, 63, stripnulls),     "album" : ( 63, 93, stripnulls),     "year" : ( 93, 97, stripnulls),     "comment" : ( 97, 126, stripnulls),     "genre" : (127, 128, ord)} 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -