我目前正在开发一个播放.mp4文件的项目,在.mp4文件结束后,它将选择另一个.mp4文件播放。
我正在试图复制电视的机制。 它播放一集节目,然后播放另一集。
.mp4文件结束后,我想让它自动播放另一个.mp4文件。
这是我到目前为止的代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML Television</title>
<style>
* {
margin: 0; /* fallback style */
margin: initial;
}
html {
background-color: black;
color: white;
}
video {
display: block;
margin: 0 auto;
max-height: 200vh;
max-width: 400vw;
}
</style>
</head>
<body>
<section id="videos">
<video poster="video3.png" controls="controls" preload="none">
<source type="video/mp4" src="../TV/TV/1.mp4">
</video>
<video poster="" controls="controls" preload="none">
<source type="videp/mp4" src="../TV/Commercial/1.mp4">
</section>
<script>
(function () {
"use strict";
var videosSection = document.getElementById("videos");
var videosSectionClone = videosSection.cloneNode();
var videos = videosSection.getElementsByTagName("video");
var randomVideo = videos.item(Math.floor(Math.random() * videos.length)).cloneNode(true);
randomVideo.removeAttribute("controls");
randomVideo.setAttribute("preload", "auto");
videosSectionClone.appendChild(randomVideo);
videosSection.parentNode.replaceChild(videosSectionClone, videosSection);
randomVideo.play();
})();
</script>
</body>
我该怎么做?
答案 0 :(得分:1)
尝试Html5视频播放活动。
HTML:
<video id="episodeVideo" width="100%" autoplay onended="run()">
<source src="episode/video1.mp4" type='video/mp4'/>
</video>
jQuery的:
var video_count =1;
var videoPlayer = document.getElementById("episodeVideo");
function run(){
video_count++;
if (video_count == 4) video_count = 1;
var nextVideo = "episode/video"+video_count+".mp4";
videoPlayer.src = nextVideo;
videoPlayer.play();
};
查看活动详情 http://www.w3schools.com/tags/ref_eventattributes.asp