Disable download on embedded video Dawn theme

I embedded a video on a custom block using this code:

video { display: block; margin: 0 auto; width: 100%; height: 50%; }

I’d like to keep the controls so that people can play/pause and turn volume up, but would like to remove the three dots and download option.

Any ideas? Thank you!

You can try something like that to start with:


but still Firefox and Safari might do their own thing, especially Safari which is known to be couple years late to implement features.

If you want to have full control over the player, then you need to remove the control attribute, and add your own controls with html, css and javascript. This method requires a good level of javascript especially, as video can be a pain to deal with and playback errors must be handled properly.