Context Menu on right click

Native context pop-up menu when you right click over player is replaced by custom Nuevo simple menu with 3 basic options (play/pause, mute/unmute and fullscreen) and branding link. You can replace Nuevo branding link with own brand.
Video Player is loading.
Advertisement
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time -:-
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
    x
    ZOOM HELP
    Drag zoomed area using your mouse.
    100%

    Player Code Example

    <!--Initialize the player and Nuevo plugin-->
    <script>
    	var player = videojs('player_1');
    	player.nuevo({ 
    		contextUrl: 'https://www.wikipedia.org',
    		contextText: 'The Free Ecyclopedia'
    	}); 
    </script>
    

    You can also disable right click context menu at all.
    Video Player is loading.
    Advertisement
    Current Time 0:00
    Duration -:-
    Loaded: 0%
    Stream Type LIVE
    Remaining Time -:-
    1x
    • Chapters
    • descriptions off, selected
    • captions off, selected
      x
      ZOOM HELP
      Drag zoomed area using your mouse.
      100%

      Player Code Setup

      <!--Initialize the player and Nuevo plugin-->
      <script>
      	var player = videojs('player_2'>);
      	player.nuevo({ 
      		contextMenu: false
      	}); 
      </script>
      

      Finally you can order to show browsers default menu
      Video Player is loading.
      Advertisement
      Current Time 0:00
      Duration -:-
      Loaded: 0%
      Stream Type LIVE
      Remaining Time -:-
      1x
      • Chapters
      • descriptions off, selected
      • captions off, selected
        x
        ZOOM HELP
        Drag zoomed area using your mouse.
        100%

        Player Code Setup

        <!--Initialize the player and Nuevo plugin-->
        <script>
        	var player = videojs('player_3');
        	player.nuevo({ 
        		contextMenu: "default"
        	}); 
        </script>