JWPlayer:使用MP4文件进行动态比特率切换?

时间:2014-11-20 15:48:40

标签: video-streaming jwplayer jwplayer6

我们目前正在使用Brightcove来托管我们的视频。我们希望利用可用于动态比特率切换的RTMP流,但unfortunately they are only available to BC's own player

假设HTTP pseudo streaming可用,有没有办法用MP4文件实现动态比特率切换?

我只能在sopport页面中找到RTMP streamingmanual rendition toggling的示例。


修改

这将允许多个视频再现,但不会动态调整到用户的可用带宽。此外,必须手动选择默认再现。

<div id="myElement"></div>

<script>
    jwplayer("myElement").setup({
      image: "/uploads/myPoster.jpg",
      sources: [{
        file: "/uploads/myVideo720mp4",
        label: "720p HD"
      },{
        file: "/uploads/myVideo360.mp4",
        label: "360p SD",
        "default": "true"
      },{
        file: "/uploads/myVideo180mp4",
        label: "180p Web"
      }]
    });
</script>

0 个答案:

没有答案