在不支持 mediaelement.js 的浏览器中,WebM 不会退回到 Flash

发布于 2024-10-20 03:10:33 字数 1015 浏览 1 评论 0原文

我正在尝试使用 mediaelement.js 以 HTML5 格式显示视频,如果浏览器不支持,则回退到 Flash。 它说,当不支持编解码器时,它将自动回退,但它不会,只会向我显示图像。如果我删除 WebM 行,那么它会显示 Flash 播放器。

有人知道如何解决这个问题吗?

这是我正在使用的代码:

<video class="videos" width="560" height="315" controls="controls" poster="img/img.jpg">
                        <source type="video/webm" src="videos/video.webmvp8.webm" />

                        <object width="560" height="315" type="application/x-shockwave-flash" data="flashmediaelement.swf">
                            <param name="movie" value="flashmediaelement.swf" />
                            <param name="flashvars" value="controls=true&poster=img.jpg&file=videos/video.flv" />
                            <!-- Image as a last resort -->
                            <img src="img/img.jpg" width="560" height="315" title="No se encontr&oacute; posibilidad de reproducir el video" />
                        </object>
        </video>

I am trying to use mediaelement.js to show videos in HTML5 with fallback to Flash if browsers don't support it.
It says that when a codec is not supported it will fallback automatically, but it doesn't and only shows me an image. If I remove the WebM line, then it shows me the Flash player.

Anyone knows how to fix this?

This is the code I'm using:

<video class="videos" width="560" height="315" controls="controls" poster="img/img.jpg">
                        <source type="video/webm" src="videos/video.webmvp8.webm" />

                        <object width="560" height="315" type="application/x-shockwave-flash" data="flashmediaelement.swf">
                            <param name="movie" value="flashmediaelement.swf" />
                            <param name="flashvars" value="controls=true&poster=img.jpg&file=videos/video.flv" />
                            <!-- Image as a last resort -->
                            <img src="img/img.jpg" width="560" height="315" title="No se encontró posibilidad de reproducir el video" />
                        </object>
        </video>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半窗疏影 2024-10-27 03:10:33

“最后的手段”img 元素应该位于 object 元素之外并位于其下方。

The "last resort" img element should be outside the object element and beneath it.

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