rtsp: //admin.123456@192.168.178.64: 554
The same video can be seen, always with the VLC client and on a Raspberry PI, at the same address.
How could I view this video stream in an HTML or PHP page. This page resides on a local site (not on the internet) registered on the Raspberry ?
I found a snippet of code on the net, but it doesn't work
Code: Select all
<div>
<OBJECT classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" width="640" height="480" id="vlc" events="True">
<param name="Src" value="rtsp://admin@192.168.178.64:554/trackID=1" />
<param name="ShowDisplay" value="false" />
<param name="AutoLoop" value="true" />
<param name="AutoPlay" value="true" />
<embed type="application/x-vlc-plugin" name="video1" autoplay="yes" loop="yes" width="640" height="480" target="rtsp://192.168.178.64/trackID=1"></embed>
</OBJECT>
</div>
P.S. : I hope I have posted to the right forum.