在流播放器播放列表中需要帮助


Need help in flowplayer playlist

在我当前的项目中,我必须添加一个带有播放列表的视频播放器。我正在使用流播放器。播放完第一个视频后,我需要像播放列表一样播放第二个视频。以下是我的源代码:

$(function() {
$(".entries").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    visible: 3,
    circular: true,
    speed: 10
});
$f("player", "<?php echo $path ?>swf/flowplayer-3.2.7.swf", {
    plugins: {
        controls: {
            playlist: true,
            backgroundColor: 'transparent',
            backgroundGradient: 'none',
            bottom: '1',
        }
    },
    clip: { 
            baseUrl: 'http://localhost/hurltv/uploads/videos/', 
            autoPlay:false, 
            autoBuffering:true
        }
}).playlist("div.entries:first", {loop:true});

});

播放列表正在工作,只是视频没有连续播放。有人能帮我解决这个问题吗

感谢

如果用"div.entries"替换"div.enteries:first"会发生什么?