我正在尝试实现VLC嵌入播放器,以使用VLC在Web上播放UDP。找到了几个示例代码,但没有一个正在工作。 VLC对象不是init。
https://wiki.videolan.org/Documentation:WebPlugin/
VLC与Firefox插件一起安装。
<html>
<title>VLC plugin test page</title>
<body>
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="https://download.videolan.org/vlc/0.8.2/win32/axvlc.cab" id="vlc">
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2" width="320" height="240" id="vlc" />
</object>
<script>
var vlc = document.getElementById("vlc");
vlc.playlist.add("udp://@239.3.2.1:1234", "CNN");
vlc.playlist.play();
vlc.video.deinterlace.enable("blend");
</script>
</body>
我可以使用VLC在Web上播放UDP吗?
OR
还有其他解决方法吗?
非常感谢您的帮助。