html5-qrcode icon indicating copy to clipboard operation
html5-qrcode copied to clipboard

How to choose camera?

Open shinjo77 opened this issue 8 years ago • 2 comments

Hi

Is there way to control which camera to use? From my laptop - chrome it uses back camera, while my android phone - chrome uses front camera. is this more of browser issue?

shinjo77 avatar Aug 21 '16 02:08 shinjo77

https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia

var front = false; document.getElementById('flip-button').onclick = function() { front = !front; };

var constraints = { video: { facingMode: (front? "user" : "environment") } };

chiefcll avatar Sep 17 '16 17:09 chiefcll

Where would this fit into this example?

Fever905 avatar Sep 23 '16 17:09 Fever905