JWplayer 图像后备,如果没有 html5 或 flash 支持?
我正在使用 JWPlayer 来提供带有 Flash 回退功能的 html5 视频。
如果既没有 html5 也没有 flash 支持,我还希望有一个图像后备,但我不知道如何做到这一点。
我的代码如下:
modes: [
{ type: "html5", },
{ type: "flash", src="http://www.mysite.com/jwplayer/player.swf"}
],
levels: [
{ file: "myvideo.mp4" }, // H.264 version
{ file: "myvideo.webm" }, // WebM version
{ file: "myvideo.ogg" } // Ogg Theroa version
],
有什么想法吗?谢谢
I'm using JWPlayer to serve an html5 video with a flash fallback.
I'd also like to have an image fallback if there is neither html5 nor flash support but I can't see how to do this.
My code is as follows:
modes: [
{ type: "html5", },
{ type: "flash", src="http://www.mysite.com/jwplayer/player.swf"}
],
levels: [
{ file: "myvideo.mp4" }, // H.264 version
{ file: "myvideo.webm" }, // WebM version
{ file: "myvideo.ogg" } // Ogg Theroa version
],
Any ideas? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用两个实用程序函数来检查 HTML5 和 Flash。您可以在 中找到它们来源(复制并粘贴网址:http://developer.longtailvideo.com /trac/browser/trunk/js/src/utils/jwplayer.utils.js?rev=1311):
There are two utils functions you can use to check for HTML5 and Flash. You can find them here in the source (copy & paste the url: http://developer.longtailvideo.com/trac/browser/trunk/js/src/utils/jwplayer.utils.js?rev=1311):