how to disable download video option

后端 未结 3 1941
孤城傲影
孤城傲影 2021-02-13 04:48

i want to disable download video link from control panel of video tag.


     
3条回答
  •  梦谈多话
    2021-02-13 05:20

    For anyone that may be looking at this question from the future (Jetsons type beat) yes, controlList='nodownload' absolutely work. But I would suggest, instead of adding controlList in the video tag, do it in your js file. Because if someone starts playing around with your code, they could easily delete the controlsList property and still download it (if they are on a computer of course) So, to be safe - put it in your js file. Then obfuscate the js file. So, just in case you don't know what I mean - it should look like this (btw, I used jquery):

    $(document).ready(() => {
    
    $('video').attr('controlsList', 'nodownload');
    
    });
    

    And this will absolutely work and prevent people from just going in and deleting your video properties.

提交回复
热议问题