麻烦HTML5比迪奥玩,在Firefox 33(Trouble getting HTML5 vidi

2019-10-21 10:25发布

我准备更新一些旧网页到HTML5,并惊讶地看到,它在Chrome中工作,但不是最新的Firefox(v.33.1 ...也试过V.32)。 奇怪的是这...在Firefox中,它实际上会起到如果你“哄”。 如果移动视频位置滑块超越某处开始(约5秒),然后单击播放,一切都很好。 进一步检查表明,当我点击播放,文件指针呈跳跃到文件离开我的“大字报”的照片完好无损的结束,导致观众觉得有没有别的可以做。 但是,如果您手动移动指针回任何地方超越了第一对夫妇的文件秒(真的!),然后点击播放按钮,FF将播放的视频罚款休息。

有时我想,在技术上更我们之间的头脑,宇宙多尔斯出怪异的问题,而上帝就发笑。

我怀疑视频文件损坏,但我所有的转化率与非常可靠的ffmpeg工具制造,并用VLC进行测试。 再次,它工作正常从Chrome中,据称使用相同的视频格式。 这里有一个链接...

FF将发挥老型号OGV文件,因此,如果这是那些东西,其中FF,现在33版本的过错之一,我有一个文件撰写来检测浏览器和写的顺序我自己()。 但它会很高兴地知道,如果有更straigh正解。

请注意,我已经尝试添加MIME类型来我HTACESS文件。 但事实上,该行为是相同的,当我点直接浏览我的本地计算机上的文件,makles我怀疑这就是问题所在。

http://pixyland.org/peterpan/OurWedding2a.html

这里是页面代码

 <!DOCTYPE html > 

<html>
<head>
    <title>Our Fairy Wonderful Wedding Day... The Arrival!! 
</title>

    <link rel="shortcut icon" href="/pixyland.ico" >

</head>

<body  marginwidth="10" leftmargin="10"  rightmargin="10" bgcolor="#33cc99" link="#333399"  >



<table align="center" border="1"><tr><td align="center">
<div id='vtLocation' align="center">

<video width="640" height ="480" controls poster="Imagezz/Wedding/arIMG_2280.JPG">
 <source src ="../vids/Arrival.mp4" type="video/mp4">  <!--cSafari / iOS -->
 <source src ="../vids/Arrival.webm" type="video/webm"> <!-- Firefox / Opera / Chrome -->
 <source src ="../vids/Arrival.ogv" type="video/ogg" > <!-- older Firefox / Opera / Chrome -->


 <!-- download as last resort -->
 <p>If you are unable to view the video, here are some links to download <br>
  in a a few well supported video formats. You may be able to just download <br>
  and play one of these files without the browser.<br><br>
  <strong>Download Video:</strong>nbsp;
    nbsp;<a href="../vids/Arrival.mp4">"MP4"</a>
    nbsp;<a href="../vids/Arrival.webm">"WEBM"</a>
    nbsp;<a href="../vids/Arrival.ogv">"Ogg"</a>
 </p>

 </video>
 </div>
 </table>



</body>
</html>

Answer 1:

发现这个建议,也值得尝试

fmpeg -i input.webm -codec copy -avoid_negative_ts 1 output.webm

https://stackoverflow.com/a/19639848/1686036

它似乎帮助我,虽然也可以用FF别的东西“不寻常”



文章来源: Trouble getting HTML5 vidio to play, in Firefox 33