真机调试,Android调用cmr.startVideoCapture方法后,直接闪退,ios正常的
var res = cmr.supportedImageResolutions[0];
var fmt = cmr.supportedVideoFormats[0];
console.log("支持摄影的格式:"+fmt);
console.log("支持摄影的分辨率:"+res);
//调用摄像头进行摄像操作
cmr.startVideoCapture(
function(path){
alert( "Capture video success: " + path );
},
function(error){
alert( "Capture video failed: " + error.message );
},
{
resolution:res,
format:fmt
}
);
0 个回复