Popcorn duration Example
HTML
<script src="http://popcornjs.org/code/dist/popcorn-complete.min.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>
<div id="footnotediv"></div>
CSS
html{font-family:arial;}
JavaScript
// create our instance
var pop = Popcorn("#video");
// at 1 second, check what the duration is
pop.exec( 1, function() {
console.log( this.duration() );
});
// play the video
pop.play();