我已将VLC播放器嵌入到网页中,我想知道是否可以使用不同的图像更改“锥形”徽标。我正在使用VLC来播放多播流(仅限音频)。
我查看了VLC webplugin文档,发现了这个:http://wiki.videolan.org/Documentation:WebPlugin#Logo_Object
我不确定它是如何工作的。这是我现在所拥有的,但不起作用,徽标保持不变。
<html><head><title>Radio</title></head><body>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2"
width="300px" height="300px" id="vlc" windowless="true" loop="yes" autoplay="no"
enablejavascript="true" allowfullscreen="false" target="rtp://@:port/" id="vlc">
</embed>
<script>
var vlc = document.getElementById("vlc");
vlc.video.logo.file("pic.png");
</script>
</body></html>
非常感谢任何建议和帮助。感谢。
答案 0 :(得分:0)
<embed type="application/x-vlc-plugin"
pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2"
width="300px"
height="300px"
id="vlc"
windowless="true"
loop="yes"
autoplay="no"
enablejavascript="true"
allowfullscreen="false"
target="rtp://@:port/">
</embed>