+1 2023-5-12
video停止播放后还在继续推流怎解决?代码片段 https://developers.weixin.qq.com/s/HjCC8jm47nzn 点击暂停后,还在不断走请求 [图片]
2023-05-122023-4-28 同问+1
小程序,页面跳转的时候有动画效果,怎么样才能取消这种特效小程序,页面跳转的时候有动画效果,怎么样才能取消这种特效啊。。。。。
2023-04-28同问,作者解决了吗?
video组件播放m3u8流后无法暂停问题很容易复现,随便找一段直播m3u8流,推流端停止推流后,小程序中video请求必然发生错误,我在binderror处绑定了错误处理事件 wxml <video src="{{video.src}}" id="video" binderror="videoState" wx:if="{{video.src}}"></video> js部分,1采用videoContext的stop方法,无法停止 videoState (res) { if (res.type == 'error') { wx.createSelectorQuery().select('#video').fields({ context: true }, res => { res && res.context.stop() }).exec() } } js部分,2采用直接移除掉video标签的方法,也无法停止 videoState (res) { if (res.type == 'error') { this.setData({ 'video.src': '' }) } } 以上两种方式都无法在小程序中停止拉流,控制台也一直反应在不停的拉流,然后不停的触发error事件。 [图片] [图片] [图片]
2023-04-28