Page 1 of 1

VLC RTSP Stream and Website

Posted: 22 Feb 2008 12:46
by eliotmc
Hello,

i have several vod streams here with vlc.
I am using debian, but that should not matter.
I set it up like this way:

Code: Select all

vlc --ttl 12 -vvv --color -I telnet --telnet-password videolan --rtsp-host 192.168.0.110:6000 And in telnet: setup cobra input cobra.ts new cobra vod enabled
Everything went fine, and i could access the stream with vlc and mplayer.

Now i tried to link the stream into my homepage like that:

Code: Select all

<object data="rtsp:192.168.0.110/kabel" type="video/mpeg" autostart="true" loop="true" width="720" height="576">
But it does not work for me.
How can i link this streams into my website?

regards

eliotmc

Re: VLC RTSP Stream and Website

Posted: 27 Mar 2008 10:39
by Shiah
Hi,
I have the same problem.
Did you solve it?
thanks

Re: VLC RTSP Stream and Website

Posted: 10 Oct 2008 20:57
by darinc
per your post your set up your rtsp address to 6000 rather than the default of 554
vlc --ttl 12 -vvv --color -I telnet --telnet-password videolan --rtsp-host 192.168.0.110:6000
per your post you do not specify that in your web page code:
<object data="rtsp:192.168.0.110/kabel" type="video/mpeg" autostart="true" loop="true" width="720" height="576">
why not try specifying port 6000 on the rtsp request:

Code: Select all

<object data="rtsp://192.168.0.110:6000/kabel" type="video/mpeg" autostart="true" loop="true" width="720" height="576">