I'm taking an image from the webcam and storing it to the server. Everything was working fine until I got the chrome update today. My latest chrome version is:
Version 71.0.3578.80 (64 bit)
This line is throwing an error:
camera.src = window.URL.createObjectURL(stream); Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.
According to this link here. I applied the code
try { this.srcObject = stream; } catch (error) { this.src = window.URL.createObjectURL(stream); } Its not displaying the camera feed.
For reference - This jsfiddle code is not working on my chrome anymore.