G
gene kelley
I have an app that has a class for reading mp3 tags.
According to id3.org, ID3V2.3 tags are always UTF8 encoded (unless flagged
otherwise).
In a routine, I have this line which returns an array of characters:
System.Text.Encoding.UTF8.GetChars(tBytes)
The returned characters are correct 99% of the time. The 1% problem cases are those
tag strings that contain characters > Chr(128).
For example:
André Rieu is an expected result. The actual result is Andr Rieu.
Can anyone tell me if I'm missing something here, or, is this just another case of
non-compliant ID3V2.3 tags (not unusual)?
Gene
According to id3.org, ID3V2.3 tags are always UTF8 encoded (unless flagged
otherwise).
In a routine, I have this line which returns an array of characters:
System.Text.Encoding.UTF8.GetChars(tBytes)
The returned characters are correct 99% of the time. The 1% problem cases are those
tag strings that contain characters > Chr(128).
For example:
André Rieu is an expected result. The actual result is Andr Rieu.
Can anyone tell me if I'm missing something here, or, is this just another case of
non-compliant ID3V2.3 tags (not unusual)?
Gene