| View previous topic :: View next topic |
| Author |
Message |
Anonymous Guest
|
Posted: Tue Aug 21, 2007 2:19 pm Post subject: no more than 12 mountpoints possible? |
|
|
hi
my server works with icecast2.
i'm using 12 mountpoints at the moment.
i added a 13th mountpoint, then restarted the icecast2, and suddenly the first mountpoint is lost in the statspage.
is the number of mountpoints limited to 12 ? |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Tue Aug 21, 2007 2:27 pm Post subject: |
|
|
There is no internal limit on the number fo mountpoints possible, you can limit it with the sources setting in the xml file but adding a new stream does not cause another stream to drop. Just for reference, we tested 1400 streams on the same server.
karl. |
|
| Back to top |
|
 |
Anonymous Guest
|
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Tue Aug 21, 2007 4:24 pm Post subject: |
|
|
I think I understand what your issue is. The live.ogg is an external reference you have for your listeners and you use the fallback mechanism to cascade down to the real mountpoint the source is streaming on. What you are seeing is a cascade limit being applied which is there to prevent a fallback loop from occurring.
What you could do instead is have /live.ogg be a relay of say /music.ogg (which is fed from a repeating playlist), then have each /dj mount fallback/override the music.ogg mountpoint. This way /live.ogg is always present, and each DJ will connect and change where the live.ogg relay takes the stream from. Setting sources to 3 will mean that you'll only have 1 /dj connected as well.
karl. |
|
| Back to top |
|
 |
Anonymous Guest
|
Posted: Tue Aug 21, 2007 5:47 pm Post subject: |
|
|
ahhhh ... fallback-limit...i understand.
THX4the help  |
|
| Back to top |
|
 |
Anonymous Guest
|
Posted: Tue Apr 29, 2008 9:07 am Post subject: |
|
|
i think, this is not working, and i have a bug in the config.
the ices.ogg is still streaming 24h/day.
and the ices.ogg is relaying.
but, when a dj goes on the stream, the dj is not relaying and in the background.
the dj.ogg's are not override the ices.ogg
who is my bug in the config?
master.xml:
| Code: |
<listen-socket>
<port>8667</port>
</listen-socket>
<master-server>127.0.0.1</master-server>
<master-server-port>8667</master-server-port>
<master-update-interval>10</master-update-interval>
<master-password>pass</master-password>
<relays-on-demand>1</relays-on-demand>
<mount>
<mount-name>/live1.ogg</mount-name>
<max-listeners>1</max-listeners>
<fallback-mount>/music1.ogg</fallback-mount>
<fallback-override>0</fallback-override>
<fallback-when-full>0</fallback-when-full>
<hidden>0</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/dj1.ogg</mount-name>
<max-listeners>1</max-listeners>
<username>source</username>
<password>pass</password>
<fallback-mount>/music2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/dj2.ogg</mount-name>
<max-listeners>1</max-listeners>
<username>source</username>
<password>pass</password>
<fallback-mount>/music2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/dj3.ogg</mount-name>
<max-listeners>1</max-listeners>
<username>source</username>
<password>pass</password>
<fallback-mount>/music2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/dj4.ogg</mount-name>
<max-listeners>1</max-listeners>
<username>source</username>
<password>pass</password>
<fallback-mount>/music2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/dj5.ogg</mount-name>
<max-listeners>1</max-listeners>
<username>source</username>
<password>pass</password>
<fallback-mount>/music2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/ices.ogg</mount-name>
<max-listeners>1</max-listeners>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/music1.ogg</mount-name>
<max-listeners>1</max-listeners>
<fallback-mount>/ices.ogg</fallback-mount>
<fallback-override>0</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
<mount>
<mount-name>/music2.ogg</mount-name>
<max-listeners>1</max-listeners>
<fallback-mount>/live1.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<hidden>1</hidden>
<no-yp>0</no-yp>
</mount>
|
relay.xml:
| Code: |
<listen-socket>
<port>8666</port>
</listen-socket>
<relays-on-demand>1</relays-on-demand>
<relay>
<server>127.0.0.1</server>
<port>8667</port>
<mount>/live1.ogg</mount>
<local-mount>/live.ogg</local-mount>
<username>relay</username>
<password>pass</password>
<on-demand>1</on-demand>
<relay-shoutcast-metadata>1</relay-shoutcast-metadata>
</relay>
|
can you help me again please?  |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Tue Apr 29, 2008 2:39 pm Post subject: |
|
|
You need to be clear on what is the issue, it's hard to tell from the xml what you want to achieve. You obviously have the various dj mountpoints and I guess listeners go on /live.ogg, but live1.ogg and the music* mountpoints are not clearly defined.
karl. |
|
| Back to top |
|
 |
|