Firefox 10 无法播放 webm 视频。我做错了什么?

发布于 2025-01-08 17:55:07 字数 719 浏览 1 评论 0原文

我有一个小型 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妞丶爷亲个 2025-01-15 17:55:07

正如评论中所讨论的,问题是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文