I am using ReactPlayer https://www.npmjs.com/package/react-player in my react project and it is working but issue is when I put any youtube video url then all youtube video series are displaying bottome side of player and if whenever I click on that youtube video title then it is redirecting to youtube site.
<ReactPlayer
onProgress={() => this.progress(this.state.vid[0].vid.videotext)}
onEnded={(e)=>this.onEnded(e,this.state.vid[0]._id)} url={this.state.vid[0].videourl} controls={true} playing={false} />}
So I just want to disable that all thing, can it possible using any way ? Your help would be highly appreciated
Thanks in Advavce