wx.getRecorderManager() 录音很多杂音,具体原因?

发布于 6 年前作者 huangyan8711 次浏览最后编辑 6 年前来自 ask
// 录音
const recordManger = wx.getRecorderManager()
recordManger.start({
    format'mp3',
    duration300000
})
recordManger.onStop(res => {
  this.tempRecordFilePath = res.tempFilePath
})

// 播放
const InnerAudioContext2 = wx.createInnerAudioContext()
InnerAudioContext2.src = this.tempRecordFilePath
InnerAudioContext2.play()



链接: https://pan.baidu.com/s/1r7dg5nsBNdipHmnR6YBYHQ 提取码: av6m

录音完后可见上方链接录音文件,都是吱吱声,使用蓝牙耳机必现,使用手机麦克风会断续出现,

这个 wx.getRecorderManager() API会收到内存的影响,或其他手机设置上的影响吗?需要确认一下出现这种情况的原因
1 回复
wei27
wei271 楼4 年前

@社区技术运营专员-娇华