When trying to activate the camera I would get a createObjectURL error on the Webcam.js.
The function did not match the signature provided.
Solved by changing: video.src = window.URL.createObjectURL( stream ) || stream; to video.srcObject = stream;
Error seems to have been resolved.
When trying to activate the camera I would get a createObjectURL error on the Webcam.js.
The function did not match the signature provided.
Solved by changing:
video.src = window.URL.createObjectURL( stream ) || stream;tovideo.srcObject = stream;Error seems to have been resolved.