我需要打开rtsp流。我有以下Firefox和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">
到目前为止,我试图用对象包装嵌入,但没有得到显著的结果。无论如何,代码是:
<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>
驾驶室的准备工作如下:https://wiki.videolan.org/ActiveX#Creating_an_VLC_ActiveX_Distribution
解决方案必须基于插件的使用。无法使用重新流式传输。
产生流的设备是海康威视DS-7208HVI-SH DVR。
如何强制IE加载此插件?QuickTime可以,但它不能打开rtsp。
首先在客户端安装Vlc Web插件(Mozilla和Firefox插件)。它通过安装Vlc Player自动安装。
然后在你的IE activeX代码中使用这个:
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
id="vlc_1"
codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab">
<param name="src" value="rtsp://USER:PASSWORD@MY_IP:MY_PORT/PSIA/streaming/channels/CAM" />
<param name="autoplay" value="true" />
<param name="toolbar" value="true" />
</object>