I would like to make it difficult to download html5 videos from the URL, which the user can inspect (browse with browser functions). Searching the Net saw that there is a 100% way not to allow the power user to download videos.
I'm using the html5 tag to display videos from an EAD course:
<video id="video"
src="localhost/path/#{Manegbean.bancoDado.codigo}.mp4"
preload="auto"
width="780px"
height="490px"
controls="controls"/>
What I was able to do so far was to disable oncontextmenu (false)
, not to allow the option to save the video through the browser, but if the user inspects (it is a smart user can see the videos).
Does anyone have a clue how I can hide well, the tag that lets you view the videos? You would have this possibility! If you have any way to make your content safer, welcome.
Thank you!