2016-07-24 200 views
0

我目前正在開發播放.mp4文件的項目,在.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

這個問題有所有的答案,你需要[答案](http://stackoverflow.com/questions/17521012/html5-video-loop-src-change-on-end-play-function-not-working) – ZombieChowder

+0

@Esorsi:在你的問題中沒有任何地方說過。無論如何,這仍然有你需要的所有答案。 –

回答

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