Python-从MP3文件获取id3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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-从MP3文件获取id3的主要内容,如果未能解决你的问题,请参考以下文章