jhuckaby / webcamjs

HTML5 Webcam Image Capture Library with Flash Fallback
MIT License
2.5k stars 1.11k forks source link

fix for new version of chrome and mozilla #289

Open MasterYura opened 5 years ago

MasterYura commented 5 years ago

error in chrome webcam.js:133 Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided. at webcam.js:133 https://monosnap.com/file/wLH34Uzr5Rz3sIxuUUnVy6x6zUkukG

need to update from video.src = window.URL.createObjectURL( stream ) || stream; to video.srcObject = stream;

thiagom10 commented 2 years ago

Thanks, works for me.