ID3_V1仅支持latin1
编码。为了使用俄语字符编写V1标签,使用cp1251
编码。我想将数据从V2标签(unicode)复制到V1标签。我使用eyeD3用法获得带有以下代码的V2标签:
tag.link(mp3path, v=eyeD3.ID3_V2)
mp3album_v2 = tag.getAlbum()
...
tag.link(mp3path, v=eyeD3.ID3_V1)
tag.setTextEncoding(eyeD3.LATIN1_ENCODING)
tag.setAlbum(mp3album_v2.encode('cp1251')) # ???
tag.update()
返回以下内容:
>>> print mp3album_v2
Жить в твоей голове
>>> print type(mp3album_v2)
<type 'unicode'>
>>> print repr(mp3album_v2)
u'\u0416\u0438\u0442\u044c \u0432 \u0442\u0432\u043e\u0435\u0439 \u0433\u043e\u043b\u043e\u0432\u0435'
看起来setAlbum
期望utf-8
字符串(?):
def setAlbum(self, a):
self.setTextFrame(ALBUM_FID, self.strToUnicode(a));
def strToUnicode(self, s):
t = type(s);
if t != unicode and t == str:
s = unicode(s, eyeD3.LOCAL_ENCODING);
elif t != unicode and t != str:
raise TagException("Wrong type passed to strToUnicode: %s" % str(t));
return s;
但如果我尝试tag.setAlbum(mp3album_v2.encode('cp1251').encode('utf-8'))
,那么我收到错误UnicodeDecodeError: 'utf8' codec can't decode byte 0xc6 in position 0: invalid continuation byte
答案 0 :(得分:5)
ID3v1无法可靠地包含任何非ASCII字符。您可以将cp1251编码的字节写入ID3v1标记,但它们只会在俄语语言环境操作系统安装上呈现为Cyrillic,甚至不会在所有应用程序上呈现。
EyeD3在内部处理Unicode字符串,并且任意选择使用latin1
(也称为ISO-8859-1)作为ID3v1标记的编码。这可能不是一个好的选择,因为latin1
永远不是Windows框中默认的特定于语言环境的编码(对于西欧,实际上cp1252
是相似但不相同的。{/ p>
然而,这种编码选择的一个属性是它的每个字节映射到具有相同代码点编号的Unicode字符。您可以通过创建一个包含字符的Unicode字符串来利用这一点,当编码为latin1
时,这些字符最终将成为latin1
以外的编码中所选字符串的字节编码。
album_name = u'Жить в твоей голове'
mangled_name = album_name.encode('cp1251').decode('latin1')
tag.setAlbum(mangled_name) # will encode as latin1, resulting in cp1251 bytes
这是一个可怕的黑客,可疑的好处,也是你应该避免使用ID3v1的原因之一。