初级和回退(RMTP和HTML5)为JWPlayer 6(Primary and Fallback

2019-10-18 01:44发布

我目前使用JWplayer 6,和我猜想,有JWPlayer 5和6之间配置的“差异”。

有谁知道如何设置主要和后备的JWPlayer 6?

我已经把我的剧本是这样的:

out.println("<div id=\"myElement\">Loading the player...</div>");
out.println("<script type=\"text/javascript\">");
out.println("jwplayer(\"myElement\").setup({");
out.println("sources:[");
out.println("{'file': \"rtmp://s2y3u5i4t1fkbz.cloudfront.net:1935/cfx/st/mp4:XXXXX.mp4\"},");
out.println("{'file': \"http://dkgitv33rxgy.cloudfront.net/XXXXX.mp4\"},");
out.println("],");
out.println("width: \"720\",");
out.println("height: \"480\"");
out.println("});");
out.println("</script>");

当我去我的电脑浏览器,检查我的网站,它无法显示。 但是,如果我用我的iPhone,它显示。 如果我注释掉HTTP,我的浏览器可以显示视频,但不是我的iphone。 如果我注释掉RTMP,我的iPhone可以显示视频。 但我需要流支持作为我的主。

有没有人有过这个问题吗?

谢谢

编辑:使用“主”:“闪”只是宽度720之前和之后(关闭方括号)。 它的工作原理与流和HTML PC和手持设备,哇噢!

Answer 1:

试试这个它适用于JwPlayer 6.3。

        jwplayer("<?php echo $this->id?>").setup({

                autostart: 'true' ,
                flashplayer: "<?php echo CHtml::asset($this->_path.'/jwplayer.flash.swf')?>",
                width:<?php echo $this->width?>,
                height:<?php echo $this->height?>,
                playlist: [{
                    sources: [
                    {
                       //Desktop: Use RTMP protocol and played by flash.
                        file: "<?php echo $this->rtmpPath;?>"
                    },
                    {
                        //Mobile: Use HLS protocol and played by HTML5
                        file: "<?php echo $this->hlsPath;?>",
                    }
                    ]
                }],
                primary:"flash",
            });

参考: 回退到直接下载



文章来源: Primary and Fallback (RMTP and HTML5) for JWPlayer 6