How can I open rear camera in mobile device using webcam.js?

Shubham picture Shubham · Mar 17, 2017 · Viewed 8.9k times · Source

I am using webcam.js by https://github.com/jhuckaby/webcamjs and In mobile devices, the front camera is opening by default. I want to change the default to the rear camera. Is there any way to change the camera device?

Answer

Shneor picture Shneor · Jul 1, 2018
 var constraints = {
    video: true,
    facingMode: "environment"
};