Skip to content

Instantly share code, notes, and snippets.

Created December 21, 2012 16:23
Show Gist options
  • Save anonymous/4353811 to your computer and use it in GitHub Desktop.
Save anonymous/4353811 to your computer and use it in GitHub Desktop.
Html 5 OOYALA
<!DOCTYPE html>
<html>
<head>
<!-- Load Ooyala Player -->
<script src="https://player.ooyala.com/v3/Y2EwZTZjZWEzZTVjYTI5MzE5YWY2NTlh?platform=html5"></script>
<!-- Load additional custom modules -->
</head>
<body>
<!-- Player Placement -->
<div id='playerwrapper' style='width:480px;height:360px;'></div>
<script type="text/javascript" charset="utf-8">
OO.ready(function() {
var videoPlayer = OO.Player.create('playerwrapper', 'A5dHdyNzrtmLlf-a_kotMZ26Tnch16-t', {
width: '640px',
height:'409px',
});
videoPlayer.play();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment