我有一个名为" 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>
答案 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>
它应该有效,因为它对我有用。