web-dev-qa-db-ja.com

HTML5ビデオが終了したことを検出

HTML5の<video>要素の再生が終了したことをどうやって検出しますか?

227
Brent

あなたは最初のパラメータとして 'ends'でイベントリスナを追加することができます

このような :

<video src="video.ogv" id="myVideo">
  video not supported
</video>

<script type='text/javascript'>
    document.getElementById('myVideo').addEventListener('ended',myHandler,false);
    function myHandler(e) {
        // What you want to do after the event
    }
</script>
275
Darkroro

これを見てくださいHTML5ビデオとオーディオについて知る必要があるすべて私の下のOpera Devサイトに投稿してください私自身のコントロールをロールバックしたいです。

これは適切なセクションです:

<video src="video.ogv">
     video not supported
</video>

それからあなたは使うことができます:

<script>
    var video = document.getElementsByTagName('video')[0];

    video.onended = function(e) {
      /*Do things here!*/
    };
</script>

onendedは、すべてのメディア要素に対するHTML 5標準のイベントです。 HTML 5メディア要素(ビデオ/オーディオ)イベント のドキュメントを参照してください。

132
Alastair Pitts

JQUERY

$("#video1").bind("ended", function() {
   //TO DO: Your code goes here...
});

HTML

<video id="video1" width="420">
  <source src="path/filename.mp4" type="video/mp4">
  Your browser does not support HTML5 video.
</video>

イベントタイプ HTML Audio and Video DOM Reference

35
d1jhoni1b

これは、ビデオが終了したときにトリガーされる簡単な方法です。

<html>
<body>

    <video id="myVideo" controls="controls">
        <source src="video.mp4" type="video/mp4">
        etc ...
    </video>

</body>
<script type='text/javascript'>

    document.getElementById('myVideo').addEventListener('ended', function(e) {

        alert('The End');

    })

</script>
</html> 

「EventListener」の行で、「終了」という単語を「一時停止」または「再生」に置き換えて、これらのイベントもキャプチャします。

4
user3758025

これが完全な例です、=が役立つことを願っています。

<!DOCTYPE html> 
<html> 
<body> 

<video id="myVideo" controls="controls">
  <source src="your_video_file.mp4" type="video/mp4">
  <source src="your_video_file.mp4" type="video/ogg">
  Your browser does not support HTML5 video.
</video>

<script type='text/javascript'>
    document.getElementById('myVideo').addEventListener('ended',myHandler,false);
    function myHandler(e) {
        if(!e) { e = window.event; }
        alert("Video Finished");
    }
</script>
</body> 
</html>
4
Oscar_Wroclaski

動画タグにonended="myFunction()"を追加するだけです。

<video onended="myFunction()">
  ...
  Your browser does not support the video tag.
</video>

<script type='text/javascript'>
  function myFunction(){
    console.log("The End.")
  }
</script>
0
JC R

あなたはended, loadedmetadata, timeupdateを含まないすべてのビデオイベントにリスナーを追加することができますended関数はビデオが終了したときに呼び出されます

$("#myVideo").on("ended", function() {
   //TO DO: Your code goes here...
      alert("Video Finished");
});

$("#myVideo").on("loadedmetadata", function() {
      alert("Video loaded");
  this.currentTime = 50;//50 seconds
   //TO DO: Your code goes here...
});


$("#myVideo").on("timeupdate", function() {
  var cTime=this.currentTime;
  if(cTime>0 && cTime % 2 == 0)//Alerts every 2 minutes once
      alert("Video played "+cTime+" minutes");
   //TO DO: Your code goes here...
  var perc=cTime * 100 / this.duration;
  if(perc % 10 == 0)//Alerts when every 10% watched
      alert("Video played "+ perc +"%");
});
<!DOCTYPE html>
<html>

<head>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>

<body>

  <video id="myVideo" controls="controls">
    <source src="your_video_file.mp4" type="video/mp4">
      <source src="your_video_file.mp4" type="video/ogg">
        Your browser does not support HTML5 video.
  </video>

</body>

</html>
0
jafarbtech