最佳答案
关于 Youtube API 博客,他们正在试验他们的新的 HTML5视频播放器。
显然,要在 html5中播放视频,你必须使用 iframe 嵌入代码:
<iframe class="youtube-player" type="text/html" width="640" height="385"
src="http://www.youtube.com/embed/VIDEO_ID" frameborder="0">
</iframe>
But if the client has not joined the HTML5试用版, the player will automatically fall back into the flash player even if the client's browser is HTML5 video capable.
如何强制 HTML5视频播放,如果浏览器支持它,即使用户还没有参与 HTML5试用?
否则如何禁用闪存后备?
编辑:
强制 HTML 播放器通过 链接到 Youtube 视频是可能的,但是我需要为嵌入式视频提供这种特性。