webcamjs icon indicating copy to clipboard operation
webcamjs copied to clipboard

HTML5 Webcam Image Capture Library with Flash Fallback

Results 101 webcamjs issues
Sort by recently updated
recently updated
newest added

When will you release version 2.0?

I've developed a simple app using WebCamjs, and using command electron to start the app works well. But when I build the dist version using electron-build the Camera does not...

Some android devices (Infinix phones in particular) only get a plain green/black image returned as base64Data in Webcam.snap. The issue as it turns out was caused by canvas.toDataURL. The way...

On Android with Edge Mobile the live video is not beeing displayed. Solution: ``` if ("srcObject" in video) { video.srcObject = stream; video.play(); //added video.play(); to make it work with...

Add form data, request headers when upload snap. Call: `Webcam.upload(image_data_uri, target_url, post_data, callback, headers)` post_data and headers are js objects and optional.

Has anyone tried adding a facial guideline on the canvas to make sure the face is always centered? Is this difficult to implement? Any suggestions would be appreciated. Thanks!

My web app is loading over HTTPs but still, I got this error. [My App Link](https://growwell.prestigeapartmentsltd.co.uk/student/imageandgeocapture) My Code Snippet ` Webcam.set({ width: 320, height: 240, image_format: 'jpeg', jpeg_quality: 90 });...

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 =...

I have a scenario whereby on first load of page, the webcam correctly takes x number of photos and these show in the page. However on subsequent loads of the...

This is the basic demo https://pixlcore.com/demos/webcamjs/demos/basic.html I am using Macbook Pro. As you see that actual camera is shooting it a different aspect ratio. This would be half the trouble...