i am trying to play HTML5 video (VP8 encoded). What i want is to play it at a certain position lets say at time 50 seconds onward.
I have tried but there seem to be some problem. Can you suggest if there is something im doing wrong?
Here is the code:
<video id="vid1" width="640" height="360">
<source src="file.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<script>
document.getElementById('vid1').currentTime = 50;
</script>
HI have tried but it dosen't work. When video loads, it just starts playing from start. However if i call this during playback like after some time video is palying it works fine. Is there something i am missing?