Page 1 of 1
Streaming (and multicast) VLC source files?
Posted: 08 Mar 2010 04:14
by VLCNewDev
Hi,
I want to implement new streaming protocol in order to optimize VoD service, so I am looking for the VLC source files which manage multicast stream to add some modification.
I hope to have an answer as soon as possible.
Thanks...
Re: Streaming (and multicast) VLC source files?
Posted: 08 Mar 2010 08:47
by Jean-Baptiste Kempf
read modules/stream_output and modules/access_output
Re: Streaming (and multicast) VLC source files?
Posted: 06 Apr 2010 08:23
by VLCNewDev
Thank you for your reply...
I want to integrate a new module in vlc which communicates with live555 server (live555 server was already modified to support specfic request). This module is an implementation of SST client (SST Slotted Stream Tapping is a research protocol supporting VoD). So, I follew the declaration of live555.cpp (in $VLC/modules/demux) and its integration in modules.am and configure.ac, then I run bootstrap, configure (with enabling live555 and sst) and make. Besides, I add new selection Item in network selection protocol to activate an SST request.
But when I select SST protocol as the streaming protocol I got this error in the console:
main interface error: option sst-caching does not exist
Re: Streaming (and multicast) VLC source files?
Posted: 06 Apr 2010 08:25
by VLCNewDev
Thank you for your reply...
I want to integrate a new module in vlc which communicates with live555 server (live555 server was already modified to support specfic request). This module is an implementation of SST client (SST Slotted Stream Tapping is a research protocol supporting VoD). So, I follew the declaration of live555.cpp (in $VLC/modules/demux) and its integration in modules.am and configure.ac, then I run bootstrap, configure (with enabling live555 and sst) and make. Besides, I add new selection Item in network selection protocol to activate an SST request.
But when I select SST protocol as the streaming protocol I got this error in the console:
Code: Select all
main interface error: option sst-caching does not exist
Re: Streaming (and multicast) VLC source files?
Posted: 06 Apr 2010 15:26
by Jean-Baptiste Kempf
Did you add the relevant option ?
Re: Streaming (and multicast) VLC source files?
Posted: 09 Apr 2010 07:06
by VLCNewDev
Thanks an other time for your support..
Did you add the relevant option ?
What do you mean by "relevant option" and how shall I add them?
Thanks.
Re: Streaming (and multicast) VLC source files?
Posted: 19 Apr 2010 06:51
by VLCNewDev
Thanks for your support, I solved my problem...
Best regards.