i want to disable download video link from control panel of video tag.
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.