Firefox 10 无法播放 webm 视频。我做错了什么?
我有一个小型 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)
我在这里做错了什么?
I have a small webm video that plays fine in Chrome, but not firefox. here is my 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>
I read somewhere that to get firefox to play webm, the .htaccess file need to be appended with this:
AddType video/webm .webm
So far nothing. If I drag the file into firefox it plays fine. This is the codec used according to VLC
Google/On2's VP8 Video (VP8)
What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如评论中所讨论的,问题是 Web 服务器配置不当。按照此处的说明进行操作,然后重新启动所有 webm 视频即可在 Firefox 中正常播放。
As discussed in the comments, the problem was an improperly configured web server. Following the instructions here and then rebooting all webm videos play fine in firefox.