Page 1 of 1

Disconnected when streaming from a playlist

Posted: 01 Apr 2011 16:36
by errorxp
Hi,

I'm streaming some mp3's from a playlist but whenever it starts streaming a new mp3 the user gets disconnected and has to reconnect to the stream. How do I fix that?

Code: Select all

cvlc -vvv playlist.m3u \ --sout '#standard' \ --sout-standard-access 'http' \ --sout-standard-mux 'dummy' \ --sout-standard-dst 'localhost:8080'

Re: Disconnected when streaming from a playlist

Posted: 01 Apr 2011 17:16
by RĂ©mi Denis-Courmont
--sout '#gather:standard' --sout-keep ...

Re: Disconnected when streaming from a playlist

Posted: 02 Apr 2011 09:27
by errorxp
Thanks, it works!

The correct way is:

Code: Select all

cvlc -vvv playlist \ --sout '#gather:standard' \ --sout-standard-access 'http' \ --sout-standard-mux 'dummy' \ --sout-standard-dst 'localhost:8080' \ --sout-keep