How to delete the download button
Video.js's controls don't have a download button. If you're using Chrome with native controls, there's currently no way to do so but in chrome 58, they're adding an experimental way of modifying the native controls.
Hope that helps.
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" controlsList="nodownload" width="640" height="360">
Adding controlsList="nodownload" works in Chrome 58.0.3029.110 (64-bit)
Most helpful comment
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" controlsList="nodownload" width="640" height="360">Adding controlsList="nodownload" works in Chrome 58.0.3029.110 (64-bit)