react-multimedia-capture
react-multimedia-capture copied to clipboard
Live video preview is not available
Even after granting permission, we cant view what is recording. after record we can see the video
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; }