UnicodeEncodeError:'latin-1'编解码器无法对位置4中的字符u'\ u2019'进行编码:序数不在范围内(256)

时间:2015-10-24 05:16:43

标签: python eyed3

我使用eyeD3编辑mp3文件的元数据。我无法设置歌词标签。

def fetch_lyrics(title, artist):
    URL='http://makeitpersonal.co/lyrics?artist=%s&title=%s'
    webaddr=(URL %(artist, title)).replace(" ", "%20")
    print webaddr
    response = requests.get(webaddr)
    if response.content=="Sorry, We don't have lyrics for this song yet.":
      return 0
    else:
      return response.content

def get_lyrics(pattern, path=os.getcwd()):
    files=find(pattern, path)
    matches = len(files)
    if matches==1:
      tag = eyeD3.Tag()
      tag.link(files[0])
      lyrics = tag.getLyrics()
      if lyrics:
          for l in lyrics:
              print l.lyrics
      else:
          print "Lyrics not found. Searching online..."
          tag = eyeD3.Tag()
          tag.link(files[0])
          artist = tag.getArtist()
          title = tag.getTitle()
          l = fetch_lyrics(title, artist)
          if l==0:
            print "No matches found."
          else:
            #print l
            tag.addLyrics(l.decode('utf-8'))
            tag.update()

我得到的追溯是:

Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "lyrics.py", line 99, in get_lyrics
    tag.update()
  File "/usr/lib/python2.7/dist-packages/eyeD3/tag.py", line 526, in update
    self.__saveV2Tag(version);
  File "/usr/lib/python2.7/dist-packages/eyeD3/tag.py", line 1251, in __saveV2Ta
g
    raw_frame = f.render();
  File "/usr/lib/python2.7/dist-packages/eyeD3/frames.py", line 1200, in render
    self.lyrics.encode(id3EncodingToString(self.encoding))
UnicodeEncodeError: 'latin-1' codec can't encode character u'\u2019' in position
 4: ordinal not in range(256)

我不明白这个错误。我是否需要将任何其他参数传递给update()或addLyrics()函数。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

我想你正在尝试编写只允许使用latin-1的ID3v1(或ID3v2单字节)标签。

我想我必须修补我的眼睛D3一次来解决这个问题。尝试关闭ID3v1并将ID3v2设置为v2.4 UTF-8。

理想情况下 - 捕获,关闭ID3v1,重试。具体问题是'引用是多字节的。