为什么VLC Web插件会自动清除其播放列表?

时间:2012-08-10 08:54:00

标签: javascript html vlc

我关注this guide,但它没有显示如何动态更改插件的源属性,因此我使用Playlist对象。

我添加了一些网址,然后按vlc.playlist.playItem在它们之间切换。显示wrapper时,它可以正常工作。

当我拨打$('#wrapper').hide()然后$('#wrapper').show()时,我发现播放列表被某种神秘的力量清空

那么我应该如何正确地保留播放列表以及在视频之间切换的正确方法呢?

<div id='wrapper'>
    <embed type='application/x-vlc-plugin' id='vlc' toolbar='false' width='800' height='600' autoplay='false' />
</div>

var vlc = document.getElementById('vlc');
vlc.playlist.add('rtsp://asdfsdaf')
vlc.playlist.add('rtsp://1sfafdfa')
...

1 个答案:

答案 0 :(得分:1)

我现在正在使用fbvlc,它修复了vlc webplugin的那些错误。