如何在Chrome浏览器中播放本地视频文件?

时间:2016-08-28 20:12:38

标签: javascript html5 google-chrome video

我有一个名为" C:\ folder \ movie.mp4"的文件。我怎么能用chrome玩这个呢?我尝试使用html5视频标签,但没有运气。我看到播放器但无法点击播放。

<video width="320" height="240" controls><source src="file:///C:/folder/movie.mp4" type="video/mp4">Your browser does not support the video tag.</video>

1 个答案:

答案 0 :(得分:1)

看起来你的代码很好,尝试将视频放在html文档的同一个文件夹中,所以让我们说你做了:

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

或者,将其放在html文件夹的子文件夹中,如下所示:

<video width="320" height="240" controls><source src="folder/movie.mp4" type="video/mp4">Your browser does not support the video tag.</video>

它应该有效,因为它对我有用。