Video.js: How to delete the download button??

Created on 28 Mar 2017  路  2Comments  路  Source: videojs/video.js

How to delete the download button

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)

All 2 comments

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)

Was this page helpful?
0 / 5 - 0 ratings