Waar het allemaal om draait in ICECAST, is het icecast.xml bestand.
Waar dit precies bij jou op je systeem staat, weet ik niet, omdat ik ICECAST via een docker container heb draaien.
Dit bestaat uit de settings die aangeven waar naar geluisterd moet worden, hoeveel luisteraars je maximaal kunt 'serveren', etc., etc.
Hieronder een stukje van mijn icecast.xml bestand :
Pas in elk geval het volgende aan: <hostname> <clients> <source-password> <shoutcast-mount>
<icecast>
<!-- IMPORTANT!
Especially for inexperienced users:
Start out by ONLY changing all passwords and restarting Icecast.
For detailed setup instructions please refer to the documentation.
It's also available here:
http://icecast.org/docs/ -->
<hostname>radio.bram66.synology.me</hostname> <limits>
<!-- Global maximum number of clients.
This includes all kinds of clients, not only listeners.
-->
<clients>100</clients>
<sources>10</sources>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>10</source-timeout>
<!-- This sets the burst size in [bytes]. This is the amount the
the server sends to a listener that connects to a stream.
This allows for a significantly reducing in startup time.
Most people won't need to change from the default 64k.
Applies to all mountpoints.
-->
<burst-size>65535</burst-size>
</limits>
<authentication>
<!-- Sources log in with username 'source' -->
<source-password>
changeme</source-password>
<!-- Relays log in with username 'relay' -->
<relay-password>changeme</relay-password>
<!-- Admin logs in with the username given below -->
<admin-user>changeme</admin-user>
<admin-password>changeme</admin-password>
</authentication>
<!-- set the mountpoint for a shoutcast source to use, the default if not
specified is to have none.
<shoutcast-mount>/live</shoutcast-mount>
<!--
<directory>
<yp-url-timeout>15</yp-url-timeout>
<yp-url>
http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
</directory>
-->
<!-- You may have multiple <listen-socket> elements -->
<listen-socket>
<port>8000</port>
<!-- <bind-address>127.0.0.1</bind-address> -->
<shoutcast-mount>/test</shoutcast-mount>
</listen-socket>
</icecast>