【发布时间】:2012-07-20 06:42:23
【问题描述】:
奇怪的是,有些 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
【问题讨论】:
标签: html video html5-video