在 Flowplayer 播放列表中需要帮助
在我当前的项目中,我必须添加一个带有播放列表的视频播放器。我正在使用流播放器。第一个视频播放后,我需要像真正的播放列表一样播放第二个视频。以下是我的源代码:
$(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});
});
播放列表正常工作,只是视频没有连续播放。谁能帮我解决这个问题
谢谢
In my current project, I have to add a video player with a playlist. I am using flowplayer. After the first video plays, I need to play the second video like a real playlist. Following is my source code:
$(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});
});
The playlist is working except the videos are not continuesly playing one after the other. Can anybody help me to solve this problem
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将“div.entries:first”替换为“div.entries”会发生什么?
What happens if you replace "div.entries:first" with "div.entries"?