我们目前正在使用Brightcove来托管我们的视频。我们希望利用可用于动态比特率切换的RTMP流,但unfortunately they are only available to BC's own player。
假设HTTP pseudo streaming可用,有没有办法用MP4文件实现动态比特率切换?
我只能在sopport页面中找到RTMP streaming和manual 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>