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?

link|improve this question

1  
What browsers? Have you tried delaying the call a few miliseconds? Maybe it's taking a little longer to fully load the video element – Andre May 12 '11 at 16:49
feedback

4 Answers

up vote 6 down vote accepted

You have to wait until the browser knows the duration of the video before you can seek to a particular time. So, I think you want to wait for the 'loadedmetadata' event something like this:

document.getElementById('vid1').addEventListener('loadedmetadata', function() {
  this.currentTime = 50;
}, false);
link|improve this answer
thank you so much, it worked just fine in chrome. – Johnydep May 26 '11 at 12:16
NICE function. All in one... – John Ballinger Nov 4 '11 at 1:29
feedback

You can link directly with Media Fragments URI, just change the filename to file.webm#t=50

Here's an example

This is pretty cool, you can do all sorts of things. But I don't know the current state of browser support.

link|improve this answer
feedback

I’m a bit unfamiliar with HTML5 video, so this is just a guess, but does this work?

<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').onload = function(){
    this.currentTime = 50;
};
</script> 
link|improve this answer
2  
this does not work but solution of Richard M worked like a charm. – Johnydep May 26 '11 at 12:17
@Johnydep: ah, excellent. – Paul D. Waite May 26 '11 at 12:58
feedback

currentPosition attiribute. http://www.w3.org/TR/html5/video.html#current-playback-position

this is an old school javascript to show a little example

<video id="video" width="640" height="480" >
   <source src="myvideo.webm" type="video/webm" />
</video>
<script type="text/javascript">
    document.getElementById('video').onload = function() {
        this.currentPosition = 50;
        this.pause();
    }
</script>
link|improve this answer
onload() just does not seem to work. – Johnydep May 26 '11 at 12:17
2  
@Johnydep There is no onload event for HTML5 media elements, see: w3.org/TR/html5/video.html#mediaevents – Richard M May 26 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.