Trying to remove the download button on Wordpress Native Video Player?

Can I remove the download button in the Wordpress Native Video Player? I don't want to encourage people to download my video's.

Topic video-player Wordpress

Category Web


This is actually the default behavior of how the browser renders HTML5 video.

From this post you should be able to use the following CSS to hide the button.

video::-internal-media-controls-download-button {
    display:none;
}

video::-webkit-media-controls-enclosure {
    overflow:hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Adjust as needed */
}

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.