Videojs & Nuevo plugin Settings Menus

Manage settings menus

Settings button enables access to menu with different Nuevo plugin's features like Related videos, Sharing options, Speed control, Zoom control. The setting Menu becomes accessible once the video started to play.
You can decide to switch off each single menu using appropriate Nuevo plugin option. By default, all menus are enabled (true), except of qualityMenu (false), which is displayed as separate menu by default. "Related" menu will not appear if related videos not defined.
If the qualityMenu option enabled (true), it becomes a part of settings Menu instead of separate menu.

  • settingsButton (true)
  • relatedMenu (true)
  • shareMenu (true)
  • rateMenu (true)
  • zoomMenu (true)
  • qualityMenu (false)
  • controlbar (true)
Settings Button Settings Quality Menu
Related Menu Share Menu Speed Menu Zoom Menu
Controlbar

Check Videojs and Nuevo plugin code setup

Each menu is enabled by default. To disable one or more menus, set appropriate menu to false.
To disable settings button completely, including all menus, simply set option settingsButton to false.
If the qualityMenu option enabled, settingsButton appears automatically, even if disabled.

Code snippet
<script>
var player = videojs('example_video_1');
player.nuevo({});
</script>