Created
September 6, 2012 00:01
-
-
Save chrisallick/3648196 to your computer and use it in GitHub Desktop.
faster prebuffer of scrubbing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function addSourceToVideo(element, src, type) { | |
var source = document.createElement('source'); | |
source.src = src; | |
source.type = type; | |
element.appendChild(source); | |
} | |
var video; | |
var index = 0; | |
$(document).ready(function(){ | |
video = document.getElementsByTagName('video')[0]; | |
addSourceToVideo( video, "http://video-js.zencoder.com/oceans-clip.ogv", "video/ogv"); | |
addSourceToVideo( video, "http://video-js.zencoder.com/oceans-clip.mp4", "video/mp4"); | |
video.addEventListener("progress", progressHandler,false); | |
bindKeys(); | |
}); | |
progressHandler = function(e) { | |
if( video.duration ) { | |
var percent = video.buffered.end(0) / video.duration; | |
console.log( percent ); | |
if( percent >= 1 ) { | |
console.log("loaded!"); | |
} | |
video.currentTime = video.duration * percent; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment