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 contextMenu completely
Code snippet
<script> var player = videojs(); player.nuevo({ contextMenu: false }); </script>
Change contextMenu
You have 3 options that allow to change Nuevo context MenuCode 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>