| View previous topic :: View next topic |
| Author |
Message |
Anonymous Guest
|
Posted: Sun Feb 24, 2008 3:09 am Post subject: 10 ports |
|
|
hey guys,
i know its possible to have the ice cast server relay 10 streams one one server.
but is it possible to set ice cast server up to provide me 10 ports to stream to?
so i can have one platform open 10 ports ready to stream constantly
waiting for info
nizzie |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Feb 24, 2008 3:24 am Post subject: |
|
|
You can have icecast open multiple ports using multiple listen-socket definitions but 2.3.1 internally has a limit of 20 IIRC, however the trunk code has no such limit.
karl. |
|
| Back to top |
|
 |
Anonymous Guest
|
Posted: Sun Feb 24, 2008 3:26 am Post subject: |
|
|
| karlH wrote: |
You can have icecast open multiple ports using multiple listen-socket definitions but 2.3.1 internally has a limit of 20 IIRC, however the trunk code has no such limit.
karl. |
would u happen to have a link or a tutorial on how to set that up |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Feb 24, 2008 1:42 pm Post subject: |
|
|
Look in the icecast docs (say the one on the config file) or the sample configuration file see ship or the HOWTOs that could be found via a search engine and you'll see the <listen-socket> section describing a single port, and you want 10 of them I guess.
karl. |
|
| Back to top |
|
 |
Anonymous Guest
|
Posted: Sun Mar 02, 2008 5:50 pm Post subject: 10 ports |
|
|
| i cant figure this out. dose anyone got a templet of the icecast config file with7 to 10 ports set up i can use to edit to my needs? |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Mar 02, 2008 6:40 pm Post subject: |
|
|
It's not that difficult, here is an example with 2 ports defined. You say you want 10 so just copy/paste and edit the port numbers.
| Code: |
<listen-socket>
<port>8000</port>
</listen-socket>
<listen-socket>
<port>8001</port>
</listen-socket>
|
Any text editor will suffice.
karl. |
|
| Back to top |
|
 |
|