Does anyone know what event or property I need to query in order to get a percentage figure of the amount an HTML5 video has loaded? I want to draw a CSS styled "loaded" bar that's width represents this figure. Just like You Tube or any other video player.

So just like you tube a video will play even if the whole video hasn't loaded and give the user feedback on how much of the video has loaded and is left to load.

Just like the Red Bar on YouTube:

enter image description here

link|improve this question

76% accept rate
1  
I'm pretty sure the YouTube player is Flash, not HTML5. Are you asking for a similar solution using an HTML5 video? – Evan Mulawski Feb 17 '11 at 13:27
1  
Yes you tube is flash. I am asking for the callback data from an html5 video that will enable me to represent this information to my user. – pagewil Feb 17 '11 at 13:44
@evan, pagewil: youtube's html5 implementation is under testing...I use it....youtube.com/html5 – crodjer Feb 17 '11 at 13:47
I think you have misunderstood me – pagewil Feb 17 '11 at 13:51
feedback

4 Answers

up vote 11 down vote accepted

"progress" event fired when video load adn you can use "duration" and "buffered" attribute on video element to calculate percentage.

"buffered" is an object, "start" method return start position of buffer (0 in normal case), and "end" method return end position of buffer.

Example with jQuery:

$('video').bind('progress', function() {
  console.log($('video').get(0).buffered.end(0) / $('video').get(0).duration);
});

For played percentage, "timeupdate" event fired when video playing and you can use "duration" and "currentTime" attributes on video element to calculate percentage.

Example with jQuery:

$('video').bind('timeupdate', function() {
  console.log($('video').currentTime / $('video').duration);
});
link|improve this answer
Note: Not sure why (possibly because I'm writing a jQuery plugin, possibly because of Chrome, but I had to use .attr to get it: $('#video').attr("buffered").end() – waitinforatrain Mar 14 '11 at 19:38
I had to do video.buffered.end(0) (note: not wrapped in jQuery). – Hugh Guiney Jan 13 at 21:22
feedback

I'm not very familiar with the "video" tag but what all have you searched for and tried? A Google search seems to suggest that you can attach an event handler for the 'progress' event on the "video" element.

http://tiffanybbrown.com/2010/07/05/the-html5-video-progress-event/

link|improve this answer
Little more info here: stackoverflow.com/questions/5181865/… – XHR Mar 3 '11 at 14:25
feedback

The other awnsers didn't work for me so I started digging into this problem and this is what I came up with. The solutions uses jquery to make an progressbar.

function loaded()
{
    var v = document.getElementById('videoID');
    var r = v.buffered;
    var total = v.duration;

    var start = r.start(0);
    var end = r.end(0);

    $("#progressB").progressbar({value: (end/total)*100});      
}   

$('#videoID').bind('progress', function() 
{
    loaded();
}
);

I hope this helps others as well

link|improve this answer
feedback

When I try Yann Ls solution on a current Webkit/Chrome, I get the following error when calling end()

Uncaught TypeError: Not enough arguments

I can't find information for this on the web. Maybe anyone here who has an idea?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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