HTML5背景视频仍未播放Firefox

时间:2014-08-19 17:55:08

标签: html5 .htaccess firefox video background

Sup人。 同样的问题:
HTML5 video not playing in Firefox
除了我的背景视频在我添加

后仍未显示

AddType video / ogg .ogv
AddType video / mp4 .mp4
AddType video / webm .webm

到我在与我的视频相同的文件夹中创建的.htaccess文件

这是它应该播放的页面: http://wearerocketscience.com/wordpress/contact/

请帮忙:) TY

2 个答案:

答案 0 :(得分:0)

我在Firefox won't play .webm and .ogv videos with HTML5

看到了这个答案

取自Fez Vrasta:

  

似乎我找到了解决方案:

     

我将我的ogv编解码器从VP8切换到Tehora,现在Firefox可以播放   视频正确。

     

我将此代码用于源代码:

     

  MIMEtype是:

     

AddType video / ogg .ogv .ogg并且编解码器是:

     

Xiph.org的Theora Video(theo)我想它也适用于.webm   但我没有测试过它。

答案 1 :(得分:0)

虽然服务器似乎提供了正确的mime类型(webm和ogv在直接访问时播放得很好),但<source>定义是假的:

<video id="video_background" preload="auto" autoplay="true" loop="loop" muted="muted" volume="0">
    <source src="http://wearerocketscience.com/wordpress/wp-content/themes/twentytwelve/videos/contact.mp4"
      type="video/mp4">
    <source src="http://wearerocketscience.com/wordpress/wp-content/themes/twentytwelve/videos/contact.webm"
      type="videos/webm">
    <source src="http://wearerocketscience.com/wordpress/wp-content/themes/twentytwelve/videos/contact.ogv"
      type="video/ogv">
 </video>

video/webm(不是videos)和video/ogg(不是ogv)。