我有这段代码:
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
如何修复它。