Preventing Users from Downloading Videos and copy text from Website
Hi All,
Do we have any possibility to stop users from copying text and downloading videos from our website?
We want them to be able to watch/read the content in their browser but not be able to download it. Currently, the media player has the video source link, which allows users to easily save the video on their computer. for copy can we stop user to select text and prevent right click?
Example:
-
-
·
LeonidS
- ·
Hello @deep !
The blocking of the rigth click menu can be set with this Javscript code in the Studio->Designer->Injections->Head Injection area:
<script> document.addEventListener('contextmenu', function(event) { event.preventDefault(); }); </script>
But it will not help against the addvanced web-users. You may limit the access to the whole video page via the mem levels.
-
·
LeonidS