Firefox无法在<video>标签下播放mp4,但在Chrome中无法播放

时间:2016-04-13 05:27:08

标签: html5 firefox video

为什么我没有播放第一个LINKED mp4视频但是 在firefox 45.0.2中已成功获得第二个LINKED mp4视频(最新版本)?

Chrome可以成功播放。

有什么问题?

<html>
<body>
    <!-- Failed -->
    <video width="320" height="240" controls>
        <source src="http://video.appledaily.com.hk/admedia/20160413/12042016_int_09new_w.mp4" type="video/mp4">
    </video>

    <!-- Success -->
    <video width="320" height="240" controls>
        <source src="http://www.html5videoplayer.net/videos/toystory.mp4" type="video/mp4">
    </video>

    <!-- Success and the mp4 is downloaded from 1st link -->
    <video width="320" height="240" controls>
        <source src="12042016_int_09new_w.mp4" type="video/mp4">
    </video>

</body>
</html>

0 个答案:

没有答案