video html start time code example
Example 1: start a video at a certain time and end time html
<iframe width="560" height="315" src="https://www.youtube.com/embed/sz2W3QfXnHc?start=33&end=200" frameborder="0" allowfullscreen></iframe>
Example 2: html video time
//Set time position to 5 seconds:
var vid = document.getElementById("myVideo");
vid.currentTime = 5;