1

如果直播不可用,我想使用我的 JWPLAYER 6 pro 播放直播并切换到 vod 下载后备。

这是我的简单代码:

<div id='playervideo' style="max-height:800px !important; max-width:1365 !important; min-height:392 !important; min-width:640 !important">
        <script type='text/javascript'>
            jwplayer('playervideo').setup({
                playlist: [{
                    image: "http://domain.com/directabouttostar.jpg",
                    sources: [{
                      file: "http://oxygenstream.fr/live2.f4m"
                    },{
                      file: "http://oxygenstream.fr/live2.m3u8"
                    },{
                      file: "http://oxygenstream.fr/vod.mp4"
                    }]
                  }],
                primary: "flash",
                androidhls: true,
                autostart:  true,
                fallback: true,
                width: '100%',
                aspectratio: "16:9",
                abouttext: '::::  OXYGENSTREAM.FR  ::::',
                aboutlink: 'http://oxygenstream.fr'
            });
        </script></div>
4

1 回答 1

1

如果流关闭,播放器要么出错,要么继续缓冲。

你可以做的是检查缓冲,等待一段时间,然后加载一个新文件。

或者,您可以检查播放器是否出错,然后加载新文件。

例子:

http://support.jwplayer.com/customer/portal/articles/1442607-example-a-custom-error-message

于 2015-04-09T14:52:29.167 回答