Search code examples
reactjscloudinary

How to disable on cloudinary-react video component the download button


I need to disable the download button from the cloudinary-react Video component. The documentation page mentions nothing about the video download button customization and also on github clowdinary-react I was not able to find related documentation.

How do disable the download button form the cloudinary-react Video component?


Solution

  • I have managed to get this working using this:

    <Video
        cloudName={myCloudName}
        publicId={videoId}
        autoPlay={true}
        controls={true}
        width="100%"
        height="100%"
        disablePictureInPicture
        controlsList="nodownload"
      />
    

    More info about how to customize the player can be located at: HTMLMediaElement controlsList Sample