在 html 中播放视频的方法有很多种
<video width="320" height="240" controls>
<source src="/static/i/html/html_video_1. mp4" type="video/mp4">
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
<source src="/static/i/html/html_video_1.webm" type="video/webm">
<object data="/static/i/html/html_video_1. mp4" width="320" height="240">
<embed src="/static/i/html/html_video_1.swf" width="320" height="240">
</object>
</video>
在 HTML 中播放视频并不容易
需要谙熟大量技巧,以确保视频文件在所有浏览器中(Internet Explorer, Chrome, Firefox, Safari, Opera)和所有硬件上(PC, Mac , iPad, iPhone)都能够播放
本节,我们就来介绍在 HTML 中嵌入视频碰到的问题和解决办法
<embed> 标签的作用是在 HTML 页面中嵌入多媒体元素
下面的 HTML 代码显示嵌入网页的 Flash 视频
<embed src="intro.swf" height="200" width="200">
<object> 标签的作用是在 HTML 页面中嵌入多媒体元素
下面的 HTML 片段显示嵌入网页的一段 Flash 视频
<object data="/static/i/html/intro.swf" height="200" width="200"></object>
HTML5 <video> 标签定义了一个视频或者影片
<video> 元素在所有现代浏览器中都支持
以下 HTML 片段会显示一段嵌入网页的 ogg、mp4 或 webm 格式的视频
<video width="320" height="240" controls>
<source src="/static/i/html/html_video_1. mp4" type="video/mp4">
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
<source src="/static/i/html/html_video_1.webm" type="video/webm">
</video>
下面的范例中使用了 4 中不同的视频格式
HTML 5 <video> 元素会尝试播放以 mp4、ogg 或 webm 格式中的一种来播放视频
如果均失败,则回退到 <embed> 元素
<video width="320" height="240" controls>
<source src="/static/i/html/html_video_1. mp4" type="video/mp4">
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
<source src="/static/i/html/html_video_1.webm" type="video/webm">
<object data="/static/i/html/html_video_1. mp4" width="320" height="240">
<embed src="/static/i/html/html_video_1.swf" width="320" height="240">
</object>
</video>
在 HTML 中显示视频的最简单的方法是使用优酷等视频网站。
如果希望在网页中播放视频,那么可以把视频上传到优酷等视频网站,然后在您的网页中插入 HTML 代码即可播放视频
<embed src="http://player.youku.com/player.php/sid/XMzI2NTc4NTMy/v.swf" width="480" height="400" type="application/x-shockwave-flash">
</embed>
如果网页包含指向媒体文件的超链接,大多数浏览器会使用"辅助应用程序"来播放文件
以下代码片段显示指向 AVI 文件的链接
如果用户点击该链接,浏览器会启动"辅助应用程序",比如 Windows Media Player 来播放这个 AVI 文件
<a href="/static/i/html/intro.swf">Play a video file</a>
当视频被包含在网页中时,它被称为内联视频
如果打算在 web 应用程序中使用内联视频,需要意识到很多人都觉得内联视频令人恼火
同时请注意,用户可能已经关闭了浏览器中的内联视频选项
所以我们建议只在用户希望看到内联视频的地方包含它们
一个正面的例子是,在用户需要看到视频并点击某个链接时,会打开页面然后播放视频