2

I want to remove the option of the marked circle in the image from the player so that video can't be downloaded

1 Answers1

20

You can add controlsList="nodownload" to the video element and the download button will disappear in Chrome.

Keep in mind that people can still download the video if they really want to. An additional precaution would be to disable right-clicking on the video element:

<ReactPlayer
  // Disable download button
  config={{ file: { attributes: { controlsList: 'nodownload' } } }}

  // Disable right click
  onContextMenu={e => e.preventDefault()}

  // Your props
  url="https://media.w3.org/2010/05/sintel/trailer_hd.mp4"
  className="react-player"
  controls
  width="100%"
  height="100%"
/>
Fabian Schultz
  • 18,138
  • 5
  • 49
  • 56