2

我正在使用支持 Flash 的浏览器使用 JWPlayer 6。

即使安装了 Flash,如何让 JWPlayer 6 使用 HTML 5。

我目前有以下 JWPlayer 配置:

jwplayer("player").setup({
    type: 'rtmp',
    streamer: "<?php echo "$wowza/$app_name"; ?>",
    height: 540,
    width: 960,
    'autostart': 'true',
    'bufferlength': '3',
    'file': '<?php echo $stream_name; ?>'
});

4

1 回答 1

3

JWPlayer 将选择在任何支持浏览器的情况下使用 HTML5 版本而不是 Flash 版本。 http://www.longtailvideo.com/support/jw-player/28837/browser-device-support#modes

您需要在源中列出 RTMP 流和 HLS url,以便 JW 播放器回退。 http://www.longtailvideo.com/support/jw-player/29394/hls-with-mp4-fallback

这对你来说可能是这样的:

jwplayer("player").setup({
    type: 'rtmp',
     sources: [{
          file: "<?php echo "$wowza/$app_name"; ?>"
        },{
          file: "<?php echo "$wowza/$app_name"; ?>/playlist.m3u8"
        },{
          file: "http://non-wowza/assets/myVideo.mp4"
        }],
    height: 540,
    width: 960,
    'autostart': 'true',
    'bufferlength': '3',
    'file': '<?php echo $stream_name; ?>'
});
于 2013-04-25T07:18:03.147 回答