1

我目前正在使用 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>");

当我转到我的 PC 浏览器并检查我的网站时,它无法显示。但是,如果我使用我的 iPhone,它会显示。如果我注释掉 http,我的浏览器可以显示视频,但不能显示我的 iphone。如果我注释掉 rtmp,我的 iPhone 可以显示视频。但我需要流支持作为我的主要支持。

以前有人遇到过这个问题吗?

谢谢

编辑:在宽度 720 之前和 ] 之后使用 'primary':'flash' (右方括号)。它适用于 PC 和手持设备的流和 HTML,WOOHOO!

4

1 回答 1

2

Try this it works on 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",
            });

Reference: Fallback to direct download

于 2013-06-04T15:36:59.043 回答