I've run into a problem when reading some id3 tags with Icelandic letters.
A quick example from the shell.
>>> audio = mutagen.easyid3.EasyID3('./Björk/Albums/1990 - Gling-Gló [mp3-231]/01 - Gling-Gló.mp3')
>>> audio['title']
5: [u'Gling-Gl\xf3']
First of all, I'm not really sure how to check which character encoding the tags are in. From what I've gathered, this is the way to do it with mutagen:
>>> audio = mutagen.id3.ID3('./Björk/Albums/1990 - Gling-Gló [mp3-231]/01 - Gling-Gló.mp3')
>>> for key, value in audio.items():
... print value.encoding
This outputs '0' for each item.
And I saw somewhere that for id3 tags, the number 0 meant the string is iso-8859-1 encoded, but I don't know where to go from there. I guess this isn't right?
>>> audio.get('artist')[0].decode('iso-8859-1')
14: u'Bj\xc3\xb6rk'
As you can propably tell I am seriously confuses when it comes to character encoding issues.
All I want is to capture the tags as proper utf-8 strings so I can put them in my database.
This is just one example though, I guess I'll probably run into some other files with completely different encodings so I'm looking for a good all around solution. Just fixing this would really help me get on the track though.
Thanks in advance.