我想将视频集成到我的html页面中: 我尝试了这段代码:
<video controls="controls" width="400" height="222">
<source src="D:\videos\test2.mp4" type="video/mp4">
</video>
我得到:
aucune video dont le format ou le type mime est géré n'a été trouvé
我也尝试过:
<source src="file://D:/videos/test2.mp4" type="video/mp4">
但我也得到同样的东西!
相反,当我尝试时:
<video controls="controls" width="400" height="200">
<source src="http://www.nicolas-hoffmann.net/animations/Cavernae_Terragen2.mp4" type="video/mp4">
</video>
在这里,视频是为我渲染的!
视频路径有问题吗?
答案 0 :(得分:0)
请尝试将视频文件放在html页面的同一文件夹中。 然后创建一条相对路径:
./test2.mp4