Last active
December 10, 2015 12:58
-
-
Save josmera01/4437656 to your computer and use it in GitHub Desktop.
Player V3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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