我必须在我的一个html页面中添加.mp4(60 MB)文件。使用下面的代码行,但它不能正常工作/显示。
只播放html页面上显示“0.00”的按钮。
MP4文件放在网站“assets / video”文件夹中。
<video controls="controls" width="640" height="360">
<source src="../assets/video/RegiserUsingEmailAndPassword.mp4" type="video/mp4" />
Your browser does not support HTML5 video.
</video>
但是,如果我给出一个externel mp4视频路径,那么同样的代码就行了
<video controls="controls" poster="http://sandbox.thewikies.com/vfe-generator/images/big-buck-bunny_poster.jpg" width="640" height="360">
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4" />
</video>
答案 0 :(得分:0)
<html>
<body>
<video width="400" controls>
<source src="New/video/aa.mp4.mp4" type="video/mp4">
</video>
试试这个。当我尝试使用这个New / video / aa.mp4时,我的视频没有显示在浏览器上。然后我尝试在路径之后添加一个.mp4然后它工作..尝试它。在video.mp4之后再提供一个mp4。
祝你好运..