How do I Disable the Download Video Option | XM Community
Solved

How do I Disable the Download Video Option

  • 6 July 2019
  • 4 replies
  • 223 views

Badge +3
Hello, I'd like to prevent a video being downloaded by people completing my survey. The video is housed in my files library. The download option seems to appear only in Chrome. Thank you-
icon

Best answer by TomG 6 July 2019, 20:29

View original

4 replies

Userlevel 7
Badge +27
Add the attribute `controlsList="nodownload"` to your `<video>` tag.
Badge +3
I tired placing the attribute in various places, but I think another command must be overriding it.
Any additional help would be appreciated.

This is one version that didn't work:
!
Userlevel 7
Badge +27
The video tag in the video you posted looks like this:
```
<video controls="true" preload="auto" width="276" height="480">
```
It should look like this:
```
<video controls="true" preload="auto" width="276" height="480" controlsList="nodownload">
```
Badge +3
I tried the changes, but the menu for downloading still appears on the Chrome video control bar. In Firefox, right clicking will allow the save as option.

Leave a Reply