我目前正在使用 Android 平板电脑和 GetUserMedia 在我的程序中拍照。
显然,GetUserMedia 使用的默认摄像头是前置摄像头。如何默认使用后置摄像头?
这是我的 GetUserMedia 代码:
navigator.getUserMedia({
"audio": false,
"video": {
mandatory: {
minWidth: this.params.dest_width,
minHeight: this.params.dest_height,
//facingMode: "environment",
},
}
},
function(stream) {
// got access, attach stream to video
video.src = window.URL.createObjectURL( stream ) || stream;
Webcam.stream = stream;
Webcam.loaded = true;
Webcam.live = true;
Webcam.dispatch('load');
Webcam.dispatch('live');
Webcam.flip();
},
function(err) {
return self.dispatch('error', "Could not access webcam.");
});
我在“强制”部分插入了 facesMode 但没有奏效。
请帮忙。