cue pause popcorn
by ian_smithz
HTML
<script src="http://cdn.popcornjs.org/code/dist/popcorn-complete.js"></script>
<video height="180" width="300" id="video" controls>
<source src="http://videos.mozilla.org/serv/webmademovies/popcornplug.mp4"></source>
<source src="http://videos.mozilla.org/serv/webmademovies/popcornplug.ogv"></source>
<source src="http://videos.mozilla.org/serv/webmademovies/popcornplug.webm"></source>
</video>
JavaScript
var p = Popcorn("#video");
// When the video is ready...
p.on("canplayall", function() {
// set a cue at the 5second mark
this.cue(5, function() {
this.pause();
});
// Start playing from 3 seconds
this.pause(3);
});