调用录音的停止事件,总是大概1~2秒后才进事件本身
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码示例。
我就是在ios上用的可以的,机型6s
你6s的微信版本是多少;
我播放没遇到问题,android和ios都没问题,暂时不知道什么原因。
我这个现在解决了,谢谢您,目前还有一个问题,就是录音完,播放录音的时候不能播放,请问是什么问题,而且是安卓可以播放,苹果不可以,用
innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode)})
innerAudioContext.onError((res) => {
innerAudioContext.onError((res) =>
console.log(res.errMsg)
console.log(res.errCode)
})
追踪显示,报10004,格式错误,那么既然报了错,安卓还可以播放,希望您能帮我解决下,谢谢
随缘 您好,现在您的问题解决了吗?我也是在ios上不行,但是我是录音可以,播放刚刚录的音不行,怎么回事
const options = { duration: 10000, sampleRate: 44100, numberOfChannels: 1, encodeBitRate: 192000, format: 'aac', frameSize: 50}
const options = { duration: 10000, sampleRate: 44100, numberOfChannels: 1, encodeBitRate: 192000, format: 'aac',
frameSize: 50
}
我把这里的format改成mp3就可以在ios上面录音了。
如果希望主动停止录音,应该是调用 recorderManager.stop()
噢噢,那意思是调用了recorderManager.stop()事件后,会自动触发onStop事件是吧?