- 当前 Bug 的表现(可附上截图)
endVideo() {
var that = this;
console.log('停止录制')
this.CameraContext.stopRecord({
success: function(res) {
console.log(res)
that.videoSrc=res.tempVideoPath;
that.VideoContext = wx.createVideoContext('answerVideo', that);
that.VideoContext.play();
that.recordIng = 'hide';
that.endRecord = 'show';
that.CameraContext=null;
},
fail:function(){
console.log('录制错误')
},
complete:function(){
console.log('调用结束')
}
})
},
- 预期表现
调用CameraContext.stopRecord()API执行其success回调函数
- 复现路径
ios端都有出现CameraContext.startRecord录制时长大于一分钟后调用CameraContext.stopRecord无反应
安卓端
- 提供一个最简复现 Demo
微信小程序开发问题解答
微信小程序开发者回答:
有没有保证start和stop是相互对应的,我之前遇到类似的
微信小程序开发者回答:
超过30s
微信小程序开发者回答:
https://developers.weixin.qq.com/s/rsiGNpmG7e4K来啦
微信小程序开发者回答:
能做个代码片段吗?
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
本文网址:http://www.91bianli.com/weixinxiaochengxu/39974.html