本文实例讲述了python从mp3文件获取id3的方法。分享给大家供大家参考。具体如下:
def getid3(filename):
fp = open(filename, ‘r’)
fp.seek(-128, 2)
fp.read(3) # tag iniziale
title = fp.read(30)
artist = fp.read(30)
album = fp.read(30)
anno = fp.read(4)
comment = fp.read(28)
fp.close()
return {‘title’:title, ‘artist’:artist, ‘album’:album, ‘anno’:anno}
希望本文所述对大家的python程序设计有所帮助。