Skip to content

Instantly share code, notes, and snippets.

@josmera01
Last active December 10, 2015 12:58
Show Gist options
  • Save josmera01/4437656 to your computer and use it in GitHub Desktop.
Save josmera01/4437656 to your computer and use it in GitHub Desktop.
Player V3
<script src="http://player.ooyala.com/v3/eb840515aa7143f283f499718e7d71de"></script>
<div id="video-player" style="width:650px; height:404px; background:black;"></div>
<script type='text/javascript' charset='utf-8'>
OO.ready(function() {
var videoPlayer = OO.Player.create('video-player', 'NyYzIxODrR2aQi0Okv6qopN5kAlwk4GY', {
width: '650px',
height:'404px',
onCreate: function(player) {
player.mb.subscribe('playheadTimeChanged','player', function(eventName) {
// videoPlayer.play();
});
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment