I've got this piece of code working on FF/IE, but the listener is being ignored when on an iPad. I started with the "canplay" event, but found the loadmetadata event [here][1]. Not sure how else to tell the ipad to go the start point - any suggestions?
<video id='video' controls preload='none' >
<p>Your user agent does not support the HTML5 Video element.</p>
</video>
// For firefox and develpent
var src = 'http://media.w3.org/2010/05/video/movie_300.webm';
// For actual IPad production environment using our Wowza media server
var src = 'http://www.ourwowzaserver/videos/mp4:ourvideo.mp4/playlist.m3u8';
var start_seconds = 45;
document._video = document.getElementById("video");
document._video.setAttribute("src", src);
document._video.play();
document._video.addEventListener('loadedmetadata', function() {
this.currentTime = start_seconds;
}, false);
[1]: http://stackoverflow.com/questions/5981427/start-html5-video-at-a-particular-position-when-loading