3

我使用 embed vlc 插件在我的网页上演示 rtsp 视频流。

我以这种方式将它包含到我的页面正文中:

<embed type="application/x-vlc-plugin" name="VLC" autoplay="yes"
loop="no" volume="100" width="800" height="600" target="rtsp://url.to.stream">

但如果用户没有安装 vlc 播放器插件,则没有图像,并且不提供安装链接。我如何识别用户是否有插件(可能通过 JavaScript),或者是否可以添加<embed>元素的更多属性,它会自动提供插件安装?

4

3 回答 3

1

一种选择是使用VLC Media Player Plugin Detector

http://www.pinlady.net/PluginDetect/VLC/

在大多数情况下,它工作正常,但有一些你应该考虑的缺点。

于 2012-05-12T23:17:19.737 回答
0

您可以使用以下功能:

isVLCInstalled: function() {
    var name = "VLC";
    if (navigator.plugins && (navigator.plugins.length > 0)) {
        for(var i=0;i<navigator.plugins.length;++i) 
            if (navigator.plugins[i].name.indexOf(name) != -1) 
              return true;
    }
    else {
        try {
            new ActiveXObject("VideoLAN.VLCPlugin.2");
            return true;
        } catch (err) {}
    }
    return false;

}
于 2012-05-12T23:15:03.917 回答
0

我第一次使用它来访问 Vlc 对象:

// First get Vlc object (using getElementById or jquery $('#vlc') etc.)
// Now you test if Vlc web plugin is available checking a method or a property of Vlc object
try {
    vlc.playlist.stop();
    // Or you can try another method or properties for example vlc.playlist.clear()
} catch (error) {
    console.log("Vlc Web Plugin is not available");
    // Or put your code when Vlc web plugin is not available
}
于 2015-09-24T08:31:02.877 回答