- decode audio fail
- 当前 Bug 的表现(可附上截图) .mp3音频文件播放到一半的时候报错,错误信息:errCode:1001 errMsg: 'errCode67,err:decode audio fail' 尝试过在线播放和下载后播放,都会报错 - 预期表现 正常播放 - 复现路径 使用MIX 2S必现 - 提供一个最简复现 Demo const app = getApp() Page({ data: { innerAudioContext: null }, onShow: function() { this.data.innerAudioContext && this.data.innerAudioContext.stop() this.data.innerAudioContext && this.data.innerAudioContext.play() }, onLoad: function () { const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.src = 'https://xcx-cdn-ali.kaochong.com/hearing/voice_url/voice_url-1550566505778.mp3' innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) }) this.setData({ innerAudioContext: innerAudioContext }) } })
2019-03-15 - 4/17视频突然无法播放
- 当前 Bug 的表现(可附上截图) 2019/4/17 下午1点多开始,部分IOS手机(7.0.3,2.6.6,跟系统版本暂无关联),突然稳定出现无法播放小程序视频的问题,表现为 IOS 系统下播放 m3u8 持续抛出渲染异常。影响到的小程序:爱奇艺、优酷等。 video binderror 报错信息: {"type":"error","timeStamp":459,"target":{"dataset":{},"id":"videoId","offsetTop":0,"offsetLeft":0},"currentTarget":{"dataset":{},"id":"videoId","offsetTop":0,"offsetLeft":0},"detail":{"errMsg":"not support mixed rendering"}} 其中这个 errMsg 之前没有遇到过,官方文档也没有对此 error 的说明。
2019-04-17 - ios12.2 video播放器的一个报错问题
系统: ios 12.0.1、ios 12.1.2 手机:iphone 7 plus 在ios12.2 4g网络下 video播放器播放会报出一个错误,错误的msg为 not support mixed rendering,我们在捕获到video报错时会停止视频的播放,我们去掉这个逻辑后发现视频可以继续播放,在之前没有这个问题,麻烦查一下这个问题 [图片]
2019-04-18 - wx.createInnerAudioContext播放不了音频
音频是mp3格式,在开发者工具上能播放,但是在手机上就播放不了,有时候过几分钟播放到一半就停了,代码就那几行,检查许多遍了。不可能出错
2018-11-14