wx.getRecorderManager() 录音格式设置'aac'格式,发布后是m4a格式?
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格式的问题
})