Closed Venexs closed 4 years ago
getUserMedia() is a promises, use .then() in the startVideo()
Replace this code in startVideo() function and it will work fine.
navigator.mediaDevices.getUserMedia({video: {}}) .then((stream)=> {video.srcObject = stream;}, (err)=> console.error(err));
Hi, I am experiencing an issue. When I Downloaded the files and ran it I got a blank white screen pls help