IE 8/9与JWPlayer有关

时间:2012-01-21 01:10:50

标签: internet-explorer-8 mootools internet-explorer-9 jwplayer

我有这个灯箱可以完美地为safari / chrome / ffox播放视频但不是ie8 / ie9

            var preload = jwplayer('mb_inline_0_-1').setup({
                        'flashplayer': '/scripts/jwplayer/player.swf',
                        'file': 'test.mov',
                        'streamer': 'rtmp://etc.mysite.com.au/cfx/st',
                        'controlbar': 'bottom',
                        'width': '470',
                        'height': '290'
                    });

我在IE控制台中使用开发者工具时看到的错误是“LOG:找不到合适的玩家”,这让我相信内容类型和IE之间存在一些兼容性。我对此有所了解但看起来很高,但到目前为止没有运气。

已解决:有点愚蠢的举动......在ie8

中没有安装flash插件

1 个答案:

答案 0 :(得分:2)

IE 9还支持html5播放器,因此您可以简单地提供另一种模式,例如:

jwplayer('player').setup({
    'modes': [
        {type: 'html5'},
        {type: 'flash', src: 'js/player/player.swf'}
    ],
    'id':'player',
    'width':'300',
    'height':'20',
    'controlbar':'bottom'
});