Jwplayer Flashes“加载播放器时出错:无法加载播放器配置”

时间:2015-11-24 20:35:02

标签: javascript jwplayer jwplayer6

在正确加载视频之前,Jwplayer闪烁“加载播放器时出错:无法加载播放器配置”一秒钟。我只是认为这看起来不专业,我花了很多时间寻找如何抑制错误或隐藏它直到视频加载完毕。

在Chrome或Safari等浏览器中,您经常看不到错误,因为它太快了,但在Firefox中,您每次都会看到错误。

这是我正在谈论的现场演示:

https://jj.coursesaver.com/video/watch/2012-11-atomic-structure-atomic-mass-periodic-table/g1-atomic-and-nuclear-structure-1

我可能会尝试做什么的建议,以便用户永远不会看到此错误?

谢谢!

2 个答案:

答案 0 :(得分:1)

发生此错误的原因是您将JW Flash对象直接添加到HTML页面的方式 - 并且没有正确的配置参数。这不是嵌入JW播放器的正确方法:

<div id="videoplayer_wrapper" class="embed-responsive embed-responsive-16by9">
    <object type="application/x-shockwave-flash" data="/jw6.12/jwplayer.flash.swf" bgcolor="#000000" id="video-object" name="video-object" class="embed-responsive-item jwswf swfPrev-beforeswfanchor0 swfNext-afterswfanchor0" tabindex="0">
        <param name="allowfullscreen" value="true">
        <param name="allowscriptaccess" value="always">
        <param name="seamlesstabbing" value="true">
        <param name="wmode" value="opaque">
    </object>
</div>

尝试使用以下内容替换您拥有的内容:

<div id="videoplayer_wrapper" class="embed-responsive embed-responsive-16by9">
    <div id="video-object"></div>
</div>

答案 1 :(得分:0)

您可以使用JW Player的onSetup和onError选项为这些场景提供图像。像这样:

<div id="playerWrapper">
    <div id="player"></div>
</div>
<script>
    jwplayer('player').setup({
       file:'file.mp4',
       image:'placeholderImage.jpg',
       abouttext: 'Welcome',
       aboutlink: 'http://example.com',
       width: '100%',
       bufferlength: 3,
       primary: 'html5',
       stretching: 'uniform',
       aspectratio: '16:9',
       autostart: 'true',
       events: { 
         onError: function () {
            $('playerWrapper').html('<img src="error.jpg" style="width:100%;height:100%;" />');
         },
         onSetupError: function () {
            $('playerWrapper').html('<img src="error.jpg" style="width:100%;height:100%;" />');
         }
       },
       ga: {}
    )};
</script>