html

Prevent showing download option in HTML5 video

<video width="500" height="300" controls controlsList="nodownload">
    <source data-src="movie.mp4" type="video/mp4">
</video>

You can use 'controlList="nodownload"' attribute inside video tag to prevent to show download option in HTML5 video.

Was this helpful?