//开始录音的时候
start: function () {
const options = {
duration: 10000,//指定录音的时长,单位 ms
sampleRate: 16000,//采样率
numberOfChannels: 1,//录音通道数
encodeBitRate: 96000,//编码码率
format: 'mp3',//音频格式,有效值 aac/mp3
frameSize: 50,//指定帧大小,单位 KB
}
//开始录音
recorderManager.start(options);
recorderManager.onStart(() => {
console.log('recorder start')
});
//错误回调
recorderManager.onError((res) => {
console.log(res);
})
},
总是返回 errMsg:"startRecord:fail auth deny" 这是什么问题??
2018-10-25 已解决
原因是使用这个接扣不能用测试的appid
微信小程序开发问题解答
微信小程序开发者回答:
你好,不能用测试的appid是什么意思,是指线上就没有这个问题了吗
本文网址:http://www.91bianli.com/weixinxiaochengxu/39464.html