Can I hide the "playback speed" menu of the player UI?

Since player version 8.0 of the Bitmovin Player, a UI configuration can be provided directly within the player configuration. It is called playbackSpeedSelectionEnabled and can be used to show or hide the speed selection menu in the settings panel of the player UI.

const config = {
  key: 'YOUR_PLAYER_KEY_HERE',
  ui: {
    playbackSpeedSelectionEnabled: true
  }
};

HINT: The ui property of the player config, can be provided with the UIConfig options used for the Bitmovin Player UI Framework. So, besides the playbackSpeedSelectionEnabled other options are available as well.