我有这个代码:
rangeheader = {'Range':'bytes=-128'}
req = urllib2.Request('http://xyz.mp3',headers=rangeheader)
res = urllib2.urlopen(req)
print res.read()
现在,当我在新的 mp3 文件中编写这些标签,然后在其上使用诱变剂时,它正在显示
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
如何修复它。