My Android application retrieves SHOUTcast metadata and displays it. I'm having and issue with none-English character sets. Basically, the metadata is displayed as gibberish. How would I perform character encoding detection and display the text properly? Sorry if this is a non-trivial question, I'm not well-versed in this topic.
The stream in question is: http://skully.hopto.org:8000
<meta content="text/html; charset=windows-1252" http-equiv="Content-Type">. It means that encoding is Windows-1252, and if you use only this site, you can hardcode this encoding name and always use it. – vorrtex Mar 16 at 9:56