Disabling Video Downloads on Cloudinary
I need to share a link to a Cloudinary-hosted video while disabling or hiding the possibility of downloading the video itself.
I'm wondering if it's possible to add the attribute controlsList="nodownload"
so that the video rendered in the DOM has the following form:
<video controls controlsList="nodownload">
I just want to know if I can modify the URL of the video published by Cloudinary or if there is any other way to make it non-downloadable.
Answers
-
Hi there,
Thanks for reaching out.
If you're seeing the download link in Chrome's native player, you can disable the download link by adding
controlsList="nodownload"
to the video tag.
For more information please see here: https://googlechrome.github.io/samples/media/controlslist.html
Alternatively, you can use Cloudinary video player which don't have the download button. You can read more about it here: https://cloudinary.com/documentation/cloudinary_video_playerOtherwise, there are several ways to restrict access for resources. However, once you share the link of the resource, it's not possible to disallow users from using it and downloading the resource.
I hope this helps. If you have any questions, do not hesitate to ask.
Kind regards,
Tia
Helpful Links For You
💬 Share questions, connect with other users in our Cloudinary Community forums and Discord server!
🧑🎓 Join our Cloudinary Academy for free courses, workshops and other educational resources.
📄 Read our documentation for in-depth details on Cloudinary product features and capabilities
📰 Check out the Cloudinary blog for the latest company news and insights0