如何使用html代码在新浏览器中播放avi视频文件

时间:2013-10-01 09:22:14

标签: java html css video avi

我有视频网址,我尝试播放该视频,但它没有播放,而是下载了。如何播放视频

<div> For help <a href="https://xxx/xxx.avi" target="_blank">Watch this video</a></div>

1 个答案:

答案 0 :(得分:2)

您无法在锚标记中嵌入视频,您必须使用 html5标记。

<video width="320" height="240" controls>
    <source src="https://xxx/xxx.mp4" type="video/mp4">
    <source src="https://xxx/xxx.ogg" type="video/ogg">
    Your browser does not support the video tag.
</video>

您可以在http://www.w3.org/wiki/HTML/Elements/video

中找到更多信息

希望它有所帮助。