react-multimedia-capture icon indicating copy to clipboard operation
react-multimedia-capture copied to clipboard

Live video preview is not available

Open shiyasvp92 opened this issue 5 years ago • 1 comments

Even after granting permission, we cant view what is recording. after record we can see the video

shiyasvp92 avatar Jun 28 '19 19:06 shiyasvp92

VideoPlayer.js

handleGranted(stream) { this.setState({ granted: true }); //add this this.setStreamToVideo(stream); console.log('Permission Granted!'); }

I also removed window.URL:

setStreamToVideo(stream) { const video = this.refs.app.querySelector('video'); video.srcObject = stream; }

Fed0t avatar May 27 '20 10:05 Fed0t