小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1.使用环境:苹果手机 最新版本微信(9月份之前没问题)
2.问题:视频录制停止报错 stopRecord报错operateCamera:fail operate fail
3.使用按钮触发没问题 使用定时任务调用stopRecord报错 安卓手机及开发工具下调用正常
是不是更换了API?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
stopShootVideo() {
let that = this;
this.ctx.stopRecord({
compressed: false, //压缩视频
success: (res) => {
videoSrc = res.tempVideoPath;
console.log("压缩录像:"+videoSrc);
this.handleUploadFile(videoFile);
if(itemNum > 8){
console.log("测试结束......");
//显示查看报告按钮
this.setData({showStartBtn:false});
this.removeVedio();
}else{
//10秒后开始下一项 正式环境去掉
setTimeout(() => {
this.pgTimer();
},2000)
}
},
fail(err) {
console.log("PPPPPP:"+err.errMsg);
wx.showToast({
title: '结束录像失败${err.errMsg},请重新扫码进入',
icon: 'none',
duration: 4000
});
that.removeVedio();
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
stopShootVideo() {
let that = this;
this.ctx.stopRecord({
compressed: false, //压缩视频
success: (res) => {
videoSrc = res.tempVideoPath;
console.log("压缩录像:"+videoSrc);
this.handleUploadFile(videoFile);
if(itemNum > 8){
console.log("测试结束......");
//显示查看报告按钮
this.setData({showStartBtn:false});
this.removeVedio();
}else{
//10秒后开始下一项 正式环境去掉
setTimeout(() => {
this.pgTimer();
},2000)
}
},
fail(err) {
console.log("PPPPPP:"+err.errMsg);
wx.showToast({
title: '结束录像失败${err.errMsg},请重新扫码进入',
icon: 'none',
duration: 4000
});
that.removeVedio();
}
})
}