首页 > 其他分享 >阿里云回放监听当前视频播放完,开始播放下一个视频

阿里云回放监听当前视频播放完,开始播放下一个视频

时间:2023-02-15 10:00:22浏览次数:61  
标签:视频 一集 回放 player 播放 监听

最近要写一个自动播放下一集的功能:前提是:当前页面是一个列表,播放完一个,在播放下一个

                 var player = new Aliplayer({
					id: 'MPSplayer',
					width: that.screenWidth - Number(width),
					height: that.screenHeight,
					autoplay: true,
					source: ’阿里云回放地址‘,
					videoWidth: "100%",
				}, function(player) {
                                     player.on("ended", function(e) {
                                     //这里直接写播放下一集的逻辑即可
                                      })    
                                })                                                            

  使用以上代码即可实现监听回放,播放下一集

标签:视频,一集,回放,player,播放,监听
From: https://www.cnblogs.com/bingchenzhilu/p/17121741.html

相关文章