I've managed to code the active X plugin into one of my web pages OK ... but the problem is that the rstp stream which I'm trying to embed into the web page requires a username and password to be input before the stream will display.
Can anyone help please with the necessary code to add the username and password so that the stream will play ???
many thanks in anticipation
Code: Select all
<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://****.****.**:554/12"/>
<param name="ShowDisplay" value="True" />
<param name="AutoLoop" value="False" />
<param name="AutoPlay" value="True" />
<embed id="vlcEmb" type="application/x-google-vlc-plugin" version="VideoLAN.VLCPlugin.2" autoplay="yes" loop="no" width="640" height="480"
target="rtsp://****.****.**:554/12" ></embed>
</OBJECT>