I've got an mp3 with cyrillic text in both v1 and v2 tags. Windows and media players (aimp) display both tags fine. However when I parse tags using taglib-sharp
(also tried a few similar libs) i'm getting weird characters like Äåðæèñü
. I know there can be an issue with specific files but as Windows and players are OK then there must be a way to properly decode it. How can I decode that?
Asked
Active
Viewed 337 times
4

Vitaliy Gorbenko
- 490
- 4
- 14
-
In which tag or frame exactly do you get this 'weird characters'? – PeterCo May 08 '18 at 09:27
-
For example `Title` and `Artist`. – Vitaliy Gorbenko May 08 '18 at 10:39
-
1You can try with one of the UTF types (like UTF8 or UTF16...). Details see https://github.com/mono/taglib-sharp/blob/master/src/TagLib/ByteVector.cs – PeterCo May 08 '18 at 16:28
-
1I'm having a similar problem with this too, but it's for extracting HEX values... Anyway, here is the correct URL: https://github.com/mono/taglib-sharp/blob/master/src/TaglibSharp/ByteVector.cs – vr_driver Apr 24 '19 at 07:58