Now every thin works fine good, thanks a lot for helping me, but there
is another problem.
in ices-playlist.ogg the are to sections
first section is:
<input>
<module>playlist</module>
<param name="type">basic</param><!-- Only
'basic' implemented -->
<param
name="file">/usr/local/etc/madeinitalytv.m3u</param> <!--
be sure this exists -->
<param name="random">0</param> <!-- random play
-->
<param name="once">0</param> <!-- if set to 1 ,
plays once
through,
then exits. --
</input>
where i define the the playlist file name and other settings
econd section is:
<!-- Server details:
You define hostname and port for the
server here, along with
the source password and mountpoint.
-->
<hostname>213.254.15.38</hostname>
<port>9000</port>
<password>hackme</password>
<mount>/prova.ogg</mount>
where i define network server config and the default nount point
Now i need to have another mount point wich streams another playlist
file how can i do it?
third section:
<!-- Live encoding/reencoding:
Currrently, the parameters given here
for encoding MUST
match the input data for channels and
sample rate. That
restriction will be relaxed in the
future.
-->
<encode>
<nominal-bitrate>64000</nominal-bitrate>
<!-- bps. e.g. 64000 for 64 kbps -->
<samplerate>44100</samplerate>
<channels>2</channels>
</encode>
</instance>
<!-- Now, we define a 2nd stream instance.
Here, we only define the basic server
parameters - everything
else takes the default values.
No reencoding is done.
-->
<instance>
<hostname>213.254.15.38</hostname>
<port>9000</port>
<password>pippo34</password>
<mount>/prova_32.ogg</mount>
<!-- Stream saving. Save the outgoing stream to the
specified file
This is commented out since we don't want it by
default -->
<!--
<savefile>/tmp/streamdump.ogg</savefile>
-->
</instance>
</stream>
</ices>
I do not understand well this section, if someone can shortly explain it
to me.
thank a lot Toni
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to
'icecast-request@xiph.org'
containing only the word 'unsubscribe' in the body. No subject is
needed.
Unsubscribe messages sent to the list will be ignored/filtered.
On Wed, 2003-01-29 at 10:09, stream wrote:> Now i need to have another mount point wich streams another playlist > file how can i do it?you read from one source like a playlist and stream out one or more instances. If you want multiple playlists going out then use multiple ices.> <encode> > <nominal-bitrate>64000</nominal-bitrate> > <samplerate>44100</samplerate> > <channels>2</channels> > </encode> > </instance>> <instance> > <hostname>213.254.15.38</hostname> > <port>9000</port> > <password>pippo34</password> > <mount>/prova_32.ogg</mount> > </instance> > > </stream> > </ices> > > I do not understand well this section, if someone can shortly explain it > to me.Looks like you have 2 outgoing streams. The first (end of instance definition) will reencode using a the incoming vorbis stream into a stream with a nomimal bitrate of 64kbits@44khz and 2 channels. The second is a pass through stream which only works with playlists. This sends the ogg stream directly to the icecast server on that IP using that mount point. karl. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
I tried to stream two different playlists in two different mount points. I created playlist1.m3u for ogg compressed at 96 Kbps and playlist2.m3u for ogg comressed at 32 kbps (wich each playlist contain the right path to ogg files) i created another ices-plylist.xml called ices-playlist32.xml in this one i had changed the path to the playlist file <param name="file">/usr/local/etc/playlist2.m3u</param> and the mount pioint name /1965_32.ogg and i tried to launch multiple IceS ices /usr/local/etc/ices-playlist.xml and it works ices /usr/local/etc/ices-playlist32.xml it doesn't work the filelog ices32.log says [2003-01-29 19:07:04] INFO ices-core/main ices started... [2003-01-29 19:07:04] EROR stream/ices_instance_stream Failed initial connect to 213.254.15.38:9000 (Socket error) [2003-01-29 19:07:04] DBUG input/input_loop An instance died, removing it [2003-01-29 19:07:04] DBUG input/input_flush_queue Input queue flush requested [2003-01-29 19:07:04] INFO playlist-builtin/playlist_read Currently playing /scsi/movies/radio/radio/32kbps/hi_life_connection/ethnic_reflections/05_calanova.ogg [2003-01-29 19:07:04] EROR stream/ices_instance_stream Failed initial connect to 213.254.15.38:9000 (Unknown error) [2003-01-29 19:07:04] DBUG reencode/reencode_clear Clearing reencoder [2003-01-29 19:07:04] DBUG input/input_loop An instance died, removing it [2003-01-29 19:07:04] DBUG input/input_flush_queue Input queue flush requested [2003-01-29 19:07:04] DBUG input/input_loop All instances removed, shutting down control thread. [2003-01-29 19:07:04] INFO ices-core/main Shutdown complete and I don't know how to make it work --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.