我正在尝试使用Google Chrome v45.0.2454.85 m测试Ooyala HTML5播放器。我使用Ooyala的试用帐户登录,并在Backlot UI中上传了一个扩展名为.mp4的视频。
有一个Basic HTML5教程可以查看Ooyala播放器。我遵循了该教程,但在尝试测试网页时遇到以下错误: -
"指定的内容无效。错误#2048"。
我在我的机器上使用Tomcat作为本地服务器。
这是代码
<!DOCTYPE html>
<html>
<head>
<title>My Test Player V3 Web Page </title>
</head>
<body>
<script src='http://player.ooyala.com/v3/a163e2d9a4b6427e9baad33e86d94136'></script>
<div id='ooyalaplayer' style='width:640px;height:360px'></div>
<script>
OO.ready(function() {
OO.Player.create('ooyalaplayer', 'psOWwzeDqaYbIx19WKyhGMigX7uyg_yS');
});
</script>
<noscript>
<div>
Please enable Javascript to watch this video
</div>
</noscript>
</body>
</html>
任何人都可以帮忙解决这个问题吗?
感谢。