Video player disable download option in Chrome

  • Hello All,

    I am looking for a way to disable video download option in chrome.

    Chrome html5 controls by default gives the option to download the video but we can disable it using controlsList="nodownload" option.
    When we enable html5controls in video plugin, it shows the download option.
    Is there any way to disable it using krpano ?


    Thanks

  • I figured it out using JS way. Just sharing if someone else need it:


    Code
    var video_element = document.getElementsByTagName("Video")[0];	video_element.setAttribute("controlsList", "nodownload");	video_element.setAttribute("disablepictureinpicture", "");


    Though it would be better if can be done directly in KRPano plugin.

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!