在网站上嵌入VLC插件以播放RTSP流

问题描述 投票:4回答:1

我需要打开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。

internet-explorer stream vlc rtsp
1个回答
0
投票

首先在客户端安装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>
© www.soinside.com 2019 - 2024. All rights reserved.