Jun 22, 2018

Html5 - How to disable video download

Html5 - How disable video download

  • Use controls controlsList="nodownload" to disable download
  • Use oncontextmenu="return false;" to avoid right click and they by avoid save as option

Sample Snippet

<video width="512" height="380" controls controlsList="nodownload" oncontextmenu="return false;">
    <source data-src="mov_bbb.ogg" type="video/mp4">
</video>

No comments:

Post a Comment