如何在 cloudinary-react 视频组件上禁用下载按钮

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

我需要禁用 cloudinary-react Video 组件的下载按钮。 documentation page mentions nothing about the video download button customization and also on github clowdinary-react 我没能找到相关文档。

如何禁用 cloudinary-react Video 组件的下载按钮?

我已经成功地使用了这个:

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

有关如何自定义播放器的更多信息,请访问:HTMLMediaElement controlsList Sample