如何在播放mp4文件时修改React Player的控件。我希望禁用下载选项

问题描述 投票:0回答:1

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

reactjs react-player
1个回答
1
投票

您可以将controlsList="nodownload"添加到video元素,下载按钮将在Chrome中消失。

请记住,如果他们真的想要,人们仍然可以下载视频。另一项预防措施是禁用右键单击视频元素:

<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%"
/>
© www.soinside.com 2019 - 2024. All rights reserved.