如何在不下载的情况下获取mp3标签

时间:2013-07-27 12:47:08

标签: python mp3 mutagen

我有这段代码:

rangeheader = {'Range':'bytes=-128'}
req = urllib2.Request('http://xyz.mp3',headers=rangeheader)
res = urllib2.urlopen(req)
print res.read()

现在当我在一个新的mp3文件中写下这些标签然后使用mutagen时,它正在显示

audio = MP3("test.mp3")
print audio.info

错误: -

raise HeaderNotFoundError("can't sync to an MPEG frame")
mutagen.mp3.HeaderNotFoundError: can't sync to an MPEG frame

如何修复它。

0 个答案:

没有答案