JSFiddle - React, Tailwind, and code Playground

by steveambielli

HTML

<video width="400" id="video" controls>
  <source src="http://www.w3schools.com/HTML/mov_bbb.mp4" type="video/mp4">
  <source src="http://www.w3schools.com/HTML/mov_bbb.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>

JavaScript

function play(startTime,endTime) {
    var v = document.getElementsByTagName("video")[0];
	v.currentTime = startTime;
    v.play();
    v.addEventListener('timeupdate', function() {
       if (this.currentTime >= endTime) {
            this.pause();
        }
    }, false);
}

play('1','5');