奇怪的是,有些 MP4 文件可以在 HTML5 中播放,而有些则不会。这是一个测试页面http://psdtucss.com/test/test2.html,在 Chrome 19.0.1084.46 m 中打开。第一个 MP4 播放,但另一个不会。什么原因。代码非常简单:
<h3>the first mp4 file can play</h3>
<p><video width="640" height="264" controls="controls"><source src="1.mp4" type="video/mp4" />Your browser does not support the video tag.</video></p>
<h3>but the other can't play</h3>
<p><video width="640" height="264" controls="controls"><source src="2.mp4" type="video/mp4" />Your browser does not support the video tag.</video></p>
我怎样才能解决这个问题?
我尝试了 videojs,但仍然无法播放一些 MP4 文件。测试页面在这里: http: //psdtucss.com/test/test.html