HTML5 视频的 Flash 视频后备功能是否内置于 Flash 插件中?
我了解如何使用 HTML5 视频标签,但除了 Flash 后备部分之外。为了使用 Flash 回退,我是否只需将 .flv 文件包含在源标签列表的最后,或者是否需要包含某种特殊的 Flash 播放器,例如 Flowplayer 或其他让人想起袋鼠的播放器(忘记了姓名)。
我的计划是包含以下代码。如果 Flash 无法以这种方式工作,请告诉我:
<video controls width="400" poster="img/video/placeholder.png">
<source src="img/video/ssi_intro.webm" type="Not Sure" />
<source src="img/video/ssi_intro.mp4" type="video/mp4" />
<source src="img/video/ssi_intro.flv" type="Note Sure Again" />
</video>
我看到了大量 HTML5 视频问题,但与此无关。这让我觉得有点愚蠢,但提前感谢您的任何建议。
I understand how to use the HTML5 video tag except for one part: the flash fallback. In order to use a flash fallback do I just simply include the .flv file last in the list of source tags or is there some sort of special flash player I need to include like Flowplayer or that other one that reminds of a kangaroo (forgot the name).
My plan was to include the following code. Please let me know if the flash won't work this way:
<video controls width="400" poster="img/video/placeholder.png">
<source src="img/video/ssi_intro.webm" type="Not Sure" />
<source src="img/video/ssi_intro.mp4" type="video/mp4" />
<source src="img/video/ssi_intro.flv" type="Note Sure Again" />
</video>
I saw a ton of HTML5 video questions but not pertaining to this. This one makes me feel kind of dumb but thanks in advance for any advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如需实施,请查看面向所有人的视频。有关背景信息,请查看 Mark Pilgrim 的深入了解 HTML5 视频章节。
For an implementation, heck out Video for Everybody. For background info, check out Mark Pilgrim's Dive into HTML5 video chapter.