api - HTML5 Video Player to play a partial video file from browsers File System -



api - HTML5 Video Player to play a partial video file from browsers File System -

i have written html5 (javascript) code download video file from set of servers, able file scheme api implemented on chrome.

after download/merge pieces , create instance of html5 player

var video = document.createelement('video'); video.src = fileentry.tourl(); video.autoplay = true; console.log(fileentry.tourl()); document.body.appendchild(video);

this works fine.

but want create player start playing file after (20 of 300) pieces written, when so, player starts playing file stops after part of 20th piece, , if drag player progress bar fwd or backward bit , plays rest.

is there someway of fixing this? play smoothly without manual intervention user?

file api html5 video

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -