0
我已将VLC播放器嵌入到网页中,我想知道是否可以使用不同的图像更改“锥形”徽标。我正在使用VLC播放多播流(仅音频)。更改HTML页面中嵌入的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>
任何建议和帮助非常感谢。谢谢。