在 html 页面中,我可以像videolan 页面vlcplugin
中提到的那样嵌入,并使用 jquery 获取对插件的引用。
但似乎play(), pause()
只有vlcplugin
upto 支持这些方法0.8.5
。您如何播放和暂停最新版本的插件?
<embed id="vlcp"
type="application/x-vlc-plugin"
pluginspage="http://www.videolan.org"
name="VLC"
autoplay="no"
loop="no"
volume="100"
width="640"
height="480"
target="test.flv">
</embed>
<a id="playbutton" href="#">Play</a>
<a id="pausebutton" href="#">Pause</a>
我可以参考下面的插件
var player = document.getElementById("vlcp");
现在,我应该调用什么来让嵌入式插件播放剪辑?
我使用 firefox 作为浏览器,在 html 中嵌入 vlcplugin 是否可以在 chrome 中使用?