我已将 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>
非常感谢任何建议和帮助。谢谢。