I need to open the rtsp stream. I have the following code for Firefox and Chrome:
<embed
width="300"
height="300"
wmode="transparent"
id="vlc_1"
pluginspage="http://www.videolan.org"
type="application/x-vlc-plugin"
autoplay="true"
src="rtsp://USER:PASSWORD@MY_IP:MY_PORT/PSIA/streaming/channels/CAM">
While I was trying to wrap inline with an object without significant result. In any case, the code:
<object width="300" height="300"
data="rtsp://USER:PASSWORD@IP:PORT/PSIA/streaming/channels/CAM_NUMBER"
events="True"
id="vlc_1"
codebase="http://localhost:65211/axvlc.cab"
classid="clsid:4AD27CDD-8C2B-455E-8E2A-463E550B718F">
<param value="rtsp://USER:PASSWORD@IP:PORT/PSIA/streaming/channels/CAM_NUMBER" name="Src">
<param value="transparent" name="wmode">
<param value="True" name="ShowDisplay">
<param value="False" name="AutoLoop">
<param value="True" name="AutoPlay">
<embed width="300" height="300" target="rtsp://USER:PASSWORD@IP:PORT/PSIA/streaming/channels/CAM_NUMBER" loop="no" autoplay="yes" version="VideoLAN.VLCPlugin.2" pluginspage="http://www.videolan.org" type="application/x-vlc-plugin" id="vlc_1_embed" wmode="transparent">
</object>
The cab was prepared in accordance with: https://wiki.videolan.org/ActiveX#Creating_an_VLC_ActiveX_Distribution
The sholud solution is based on the use of plugins. Cannot use retransmission.
The device that creates the stream is the Hikvision DS-7208HVI-SH DVR.
How to get IE to download this plugin? QuickTime will be fine, but it does not open rtsp.
source
share