音频1、2来源和格式都相同且都可在浏览器正常播放,但是1不能播放! 音频2只能点击播放一次 之后点击播放没有音频输出。 onLoad: function () { this.innerAudioContext = wx.createInnerAudioContext(); }, start1:function(){ this.innerAudioContext.autoplay = true this.innerAudioContext.src = 'http://47.104.167.164/faceVideo/result_2020_07_21_12_33_43.mp3'; this.innerAudioContext.onPlay(() => { console.log('开始播放') }) this.innerAudioContext.onError((res) => { console.log('eeee',res.errMsg) console.log(res.errCode) }) }, start2:function(){ this.innerAudioContext.autoplay = true this.innerAudioContext.src = 'http://47.104.167.164/faceVideo/result_2020_07_20_21_43_11.mp3'; this.innerAudioContext.onPlay(() => { console.log('开始播放') }) this.innerAudioContext.onError((res) => { console.log('eeee',res.errMsg) console.log(res.errCode) }) },
innerAudioContext播放音频有的成功有的报10004格式错误?如下2个视频源,一个可以一个不行,视频源生成都一样! 不能:http://47.104.167.164/faceVideo/result_2020_07_21_12_33_43.mp3 能:http://47.104.167.164/faceVideo/result_2020_07_20_21_43_11.mp3
2020-07-22