在pc微信使用小程序进行录音,声明使用mp3格式,实际出的是wav(正常应该是mp3),上传后在手机播放(InnerAudioContext)提示失败
pc微信版本:3.6.0.18
小程序代码:
let manager = wx.getRecorderManager();
manager.start({
duration:600000,
format:'mp3' //声明录制mp3格式
});
manager.onStop((res)=>{
let tempFilePath = res.tempFilePath;
//这里实际是wav格式
});
上传后在手机小程序端使用InnerAudioContext播放失败
{
errCode:10004,
errMsg:"errCode:55,err:unknow format"
}
你好问题已知,请关注一下https://developers.weixin.qq.com/community/develop/issue/377