我可以使用<video>
或<audio>
标签播放播放列表并对其进行控制吗?
我的目标是知道视频/歌曲何时播放完毕,然后播放下一个并更改其音量。
最佳答案
您可以像这样在onend事件中加载下一个剪辑
<script type="text/javascript">
var nextVideo = "path/of/next/video.mp4";
var videoPlayer = document.getElementById('videoPlayer');
videoPlayer.onended = function(){
videoPlayer.src = nextVideo;
}
</script>
<video id="videoPlayer" src="path/of/current/video.mp4" autoplay autobuffer controls />
更多信息here