About Videojs Context Menu
When you right click over player this is default context Menu showing with several options, including video file download option.Using Nuevo plugin now you will see a simple, custom context Menu which you can either hide completely or change to present your own brand.
Switch off context Menu completely
Code snippet
<script> var player = videojs(); player.nuevo({ contextMenu: false }); </script>
Change context Menu
You have also 3 options to create own Context Menu on right click.Code snippet
<script> var player = videojs(); player.nuevo({ contextUrl: '//www.link.com', //optional link to any website URL contextText: 'Short text, eg. Powered by...', contextIcon: '//www.domain.com/path/to/icon.png' //optional link to icon image URL }); </script>