JWplayerでこれを行う方法はいくつかあります。 1つはレベルを持つクライアント側です。
<div id="container">Loading the player...</div>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "/jwplayer/player.swf",
height: 270,
width: 480,
image: "/thumbs/video.jpg",
levels: [
{ bitrate: 300, file: "videos/video_300k.mp4", width: 320 },
{ bitrate: 600, file: "videos/video_600k.mp4", width: 480 },
{ bitrate: 900, file: "videos/video_900k.mp4", width: 720 }
],
provider: "rtmp",
streamer: "rtmp://rtmp.example.com/application/"
});
</script>
もう1つは、サーバー側のRSSを使用しています。パッチ8以降、Wowza V3はsmilファイル(iOS用の適応型ビットレート切り替え用)やngrp(Wowza V3トランスコーダで生成されたもの)に基づいてRSSファイルを生成します。使用するURLは次のとおりです。
http://[wowza-ip-address]:1935/[application]/smil:[streamName].smil/jwplayer.rss - JWPlayer adaptive streaming
http://[wowza-ip-address]:1935/[application]/ngrp:[streamName]/jwplayer.rss - JWPlayer adaptive streaming
希望します。
おそらく、あなたはjwplayer/flowplayerで正確な問題を説明できますか? –