安卓createInnerAudioContext播放不了aac格式语音
- 当前 Bug 的表现(可附上截图)
- 预期表现
安卓音频播放10004
- 复现路径
pages/index/index
- 提供一个最简复现 Demo
Page({ data: { innerAudioContext:null }, onLoad (options) { //创建音频 this.innerAudioContext = wx.createInnerAudioContext() this.innerAudioContext.onError((res) => { console.log(res) }) }, play () { let src = "https://img.hyqfx.com/u/content/2018/0926/1423238690.aac" if (this.innerAudioContext.paused){ this.innerAudioContext.src = src; this.innerAudioContext.play() } }}) |
