Bitrate Selection

Youtube Bitrate Selection

play-rounded-fill play-rounded-outline play-sharp-fill play-sharp-outline
pause-sharp-outline pause-sharp-fill pause-rounded-outline pause-rounded-fill
00:00

This example demonstrates bitrates selection with Flowplayer 7 new bitrate menu support rather than the custom settings menu.

The default quality is set to default which the player will determine the default quality. Due to the player dimensions being small it will default to media and can be manually changed.

The bitrate labels can be configured with the qualityLabels config.

The feature is not enabled by default to enable configure the bitrates config.

    
   <div class="flex w-full">
          <div id="bitrates" class="is-bitrate is-splash"></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#bitrates", {
    "clip": {
        "sources": [
            {
                "src": "http://www.youtube.com/watch?v=YE7VzlLtp-4",
                "type": "youtube"
            }
        ]
    },
    "share": false,
    "youtube": {
        "defaultQuality": "hd720"
    }
});
  </script>