我正在尝试根据此页面使用mediaelement.js将 youtube 视频嵌入画布中。但是,视频没有加载,控制播放器全黑。有人可以给我一些提示吗?这是我的代码,主要遵循页面(添加以确保来自 youtube 的 html5 播放器):html5=true
编辑:检查了github repo下的演示。Youtube 演示是唯一不起作用的。猜猜这是这个库中的一个问题。但是,任何解决方法仍将受到赞赏。我想这样做的原因是将 youtube 流提供给 html5 画布。
<!DOCTYPE html>
<html>
<head>
<title>youtube in canvas</title>
<script src="jquery.js"></script>
<script src="mediaelement-and-player.js"></script>
<link rel="stylesheet" href="mediaelementplayer.css" />
</head>
<body>
<video width="640" height="360" id="player1" preload="none">
<source type="video/youtube" src="http://www.youtube.com/watch?v=nOEw9iiopwI&html5=true" />
</video>
<script>
jQuery(document).ready(function($) {
$('#player1').mediaelementplayer();
});
</script>
</body>
</html>