在不支持 mediaelement.js 的浏览器中,WebM 不会退回到 Flash
我正在尝试使用 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ó 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“最后的手段”img 元素应该位于 object 元素之外并位于其下方。
The "last resort" img element should be outside the object element and beneath it.