我尝试在我的网页上添加.mp4视频。并且它不起作用,我在firebug中出错了。贝娄是代码:
<video width="320" height="240" controls>
<source type="video/mp4" src="08.mp4" >
</video>
错误:
"NetworkError: 404 Not Found - http://localhost/08.mp4"
HTTP load failed with status 404. Load of media resource http://localhost/08.mp4 failed.
All candidate resources failed to load. Media load paused.
我尝试使用.m4v视频,它运行正常:
<video width="320" height="240" controls>
<source type="video/mp4" src="Big_Buck_Bunny_Trailer.m4v" >
</video>
如果我尝试访问http://localhost/08.mp4,我会收到以下信息:
A 404 error occurred
Page not found.
The requested URL could not be matched by routing.
No Exception available
答案 0 :(得分:0)
我解决了这个问题。 因为我使用zend2框架,带有视频的文件夹应该在公共文件夹中。 首先我将视频放在其他文件夹中,现在我公开移动它并且工作正常。