- 苹果手机innerAudioContext播放音频返回-11850错误
- 当前 Bug 的表现(可附上截图) 用innerAudioContext播放音频,在开发平台及android手机上可以正常播放。但是在苹果手机上去播放不了。显示 INNERERRCODE: -11850, ERRMSG: 操作停止。 有时也发生-11800错误。 [图片] - 预期表现 正常播放 - 复现路径 如下代码 - 提供一个最简复现 Demo ....wxml: <button class="weui-btn " type="primary" bindtap="playAudio">播放音频</button> ....jsm const innerAudioContext = wx.createInnerAudioContext(); Page({ data: { }, playAudio: function () { // innerAudioContext.autoplay = true ; innerAudioContext.src = 'https://ss.youbtc.net/media/audio/cv1539727702553.m4a'; innerAudioContext.play(); }, onLoad: function (options) { innerAudioContext.onPlay(() => { console.log('开始播放') }); innerAudioContext.onEnded(() => { console.log('播放结束'); }); innerAudioContext.onStop(() => { console.log('停止播放'); }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }) },
2018-10-17 - InnerAudioContext不触发onTimeUpdate回调
系统版本:安卓鸿蒙3.0 微信版本:8.0.30 点击播放语音后,能够正常播放音频,但 onTimeUpdate 回调方法不触发
2022-11-24