const recorderManager = wx.getRecorderManager();
recorderManager.start({
duration: 60000, // 录音时长,单位 ms
sampleRate: 16000, // 采样率,单位 Hz
encodeBitRate: 24000,
format: 'aac'
});
recorderManager.onStop(function (res) {
console.log('recorder stop' + JSON.stringify(res));
// res.tempFilePath 本地测试返回的aac尾缀的临时文件地址
// 发布到体验小程序 自动变成m4a尾缀格式
// 设置wav发布后是wav,没有出现类似aac格式的问题
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。