var cmr = plus.camera.getCamera();
var res = cmr.supportedVideoResolutions[0];
var fmt = cmr.supportedVideoFormats[0];
console.log("Resolution: "+res+", Format: "+fmt);
cmr.startVideoCapture( function( path ){
alert( "Capture video success: " + path );
},
function( error ) {
alert( "Capture video failed: " + error.message );
},
{resolution:res,format:fmt}
);
- 发布:2020-12-23 14:04
- 更新:2020-12-23 14:04
- 阅读:680
产品分类: HTML5+
HBuilderX版本号: 2.9.8
手机系统: Android
手机系统版本号: Android 10
手机厂商: 小米
手机机型: MI-9
打包方式: 离线
示例代码:
操作步骤:
调用录像,返回 APP重启
调用录像,返回 APP重启
预期结果:
获得正确录制视频Path
获得正确录制视频Path
实际结果:
APP重启
APP重启
bug描述:
离线SDK版本:2.9.8.80513_20201111
调用摄像结束后,APP会自动重启
使用官方 H5+ 示例也一样