WebDevSimplified / Face-Detection-JavaScript

1k stars 1.39k forks source link

Hi, I am experiencing an issue. When I Downloaded the files and ran it I got a blank white screen pls help #25

Closed Venexs closed 4 years ago

Venexs commented 4 years ago

Hi, I am experiencing an issue. When I Downloaded the files and ran it I got a blank white screen pls help

dipanshujha commented 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));