i'm trying to add the rtsp stream to http page and open it in internet explorer. the code below works but the streams starts only when i resize the IE window, can anyone help me to fix this problem?
thanks in advance.
Code: Select all
<html>
<body>
<div>
<OBJECT classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="axvlc.cab" width="100%" height="100%" id="vlc" events="True">
<param name="Src" value="rtsp://192.168.11.245" />
<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="100%" height="100%" target="rtsp://@192.168.11.245"></embed>
</OBJECT>
</div>
</body>
</html>