Firefox 10不会播放webm视频。我究竟做错了什么?

时间:2012-02-23 17:13:07

标签: html5 firefox webm

我有一个很小的网络视频可以在Chrome中播放,但不是firefox。这是我的HTML:

<!DOCTYPE HTML>
<html>
<head>
    <title>html5 video</title>
</head>
<body>
    <video  controls="controls">
    <source  type="video/webm" src="file.webm" type='video/webm; codecs="vp80, vorbis"'/>
    Your browser cannot play this
    </video>
    <a href="file.webm">Download</a>
</body>
</html>

我读到某个地方要让firefox玩webm,.htaccess文件需要附加这个:

AddType video/webm .webm

到目前为止一切都没有。如果我将文件拖到Firefox中,它就可以正常播放。这是根据VLC使用的编解码器

Google/On2's VP8 Video (VP8)

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

正如评论中所讨论的,问题是配置不正确的Web服务器。按照说明here然后重新启动所有webm视频在firefox中运行正常。