jwplayer慢缓冲视频滞后

时间:2015-07-07 22:31:49

标签: android html5 ffmpeg video-streaming jwplayer6

我正在将Jwplayer用于我的移动网站...所以我需要移动功能html5播放器..我选择jwplayer。

我正在使用ffmpeg转换视频

ffmpeg -i Input.mp4 -vcodec h264 -b 1400k -s 1280X720 -acodec libfaac -ac 2 -ab 128k -movflags faststart -y Output.mp4

我正在使用Centos Apache服务器,所以我安装了H264流模块

我的视频开始时速度很快..但在中间,当我的互联网速度变慢,缓冲速度减慢时......同时视频滞后和声音会持续几秒......在某些时候我的视频和音频同步得很好。这是因为慢速缓冲问题而发生的事情。整个视频缓冲后我重播...全视频播放效果很好。 我使用了一些Android手机Chrome浏览器进行检查。 我需要播放位置显示加载图标并等待缓冲区减慢..而不是滞后视频

我不能降低我的视频比特率..因为我的竞争对手..我想要我的html5播放器的解决方案..我添加了我的jwplayer代码。

<script>    jwplayer("myElement").setup({
        width: "100%",
        skin: "skin.xml",
        autostart: true,

        sharing: {},
      image: "http://example.com/Mp4/screen.jpg",

      sources: [{
        file: "http://example.com/720.mp4",
        label: "720p",
        "default": "true"
      },{
        file: "http://example.com/HD/hd.mp4",
        label: "HD"
      },{
        file: "http://example.com/Mp4/480x320.mp4",
        label: "480p"
      }],
      startparam: "starttime",
        stretching: "exactfit",
        autostart: false,
    });



</script>

0 个答案:

没有答案