[Icecast] non latin1 characters in titles/artist et cetera

Marvin Scholz epirat07 at gmail.com
Sat Jul 11 22:07:37 UTC 2015


On 12 Jul 2015, at 0:01, Stephen Jones wrote:

>  <!-- Only define a <mount> section if you want to use advanced 
> options,
>       like alternative usernames or passwords
>
>  <mount>
>  <mount-name>/anonradio.m3u</mount-name>
>  <charset>UTF8</charset>
>  </mount>

As you would see if using an editor with proper syntax highlighting, you 
are starting a comment with <!--
but not ending it properly with --> so it will ignore everything below 
until a --> and additionally I think
it should be utf-8 instead of UTF8. And why are you using a mount-name 
with .m3u? That is not correct unless that is the same you use in 
Nicecast. But that would be wrong anyway as you are not streaming in m3u 
but in either mp3 or something else.

Try to change your config to:

<mount>
	<mount-name>/anonradio</mount-name>
	<charset>utf-8</charset>
</mount>



More information about the Icecast mailing list