这是我的代码:
<video width="400" controls>
<source src="d:/lscweb/Presentations/2015-04-07 Ampersand.mp4" type="video/mp4">
</video>
但是当我加载页面时,我会在视频播放器中“中止”。如果我这样做:
<video width="400" controls>
<source src="d:/lscweb/Presentations/2015-04-07 Ampersand.mp4" type="video/mp4">
<source src="mov_bbb.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
我收到“无效的来源”。我假设它正在尝试查找不存在的mov_bbb.ogg文件。但是我想让它发挥第一个。这是mp4。为什么不玩呢?
答案 0 :(得分:0)
您不能使用对绝对窗口路径的链接引用。
我建议您将视频移动到与html文档相同的文件夹中,然后执行src =&#34; video.mp4&#34;避免需要使用复杂的相对路径。