How to use back camera instead of the front camera?

后端 未结 2 888
甜味超标
甜味超标 2020-12-21 09:23

I have a QR scanning camera, but when I open my website on a cell phone, the face camera turns on in my website. I want to use the back camera.

function set         


        
2条回答
  •  孤城傲影
    2020-12-21 09:38

    If you want to force the device to use front camera you can add facingMode in constraints:

    var constraints = { 
      audio: true,
      video: {
        facingMode: 'environment'
    };
    

    or use exact:

    facingMode: { exact: 'environment' }
    

提交回复
热议问题