小程序
小游戏
企业微信
微信支付
扫描小程序码分享
分享小程序码,用户通过小程序码进入直播间,在部分机型上会出现(苹果6,IOS12版本,微信最新版本7.0.8)进入直播间黑屏的问题,此现象为偶现,比如反复10次进入直播间然后大概有4次出现黑屏(不稳定),还望微信开发小伙伴帮忙看下 代码实现逻辑为每次onShow的时候会进行拉流
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
代码片段
onShow(){
if(liveRoomComponent == null) {
liveRoomComponent = plugin.instance.getLiveRoomInstance();
}
this.initPage()
// 初始化的时候会调用接口后获取播流地址后在执行如下代码
if (url.indexOf('rtmp:') == 0) {
liveRoomComponent && liveRoomComponent.start();
this.initPullServeMessage();
} else if (url.indexOf('https:') == 0 || url.indexOf('http:') == 0) {
if (url.indexOf('.flv') != -1) {
} else {
// 播流地址不合法
wx.showToast({
title:'播流地址不合法'
})
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
基础库版本是多少呢?麻烦扫描下图贴一下截图
另外,麻烦给一下能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
代码片段
onShow(){
if(liveRoomComponent == null) {
liveRoomComponent = plugin.instance.getLiveRoomInstance();
}
this.initPage()
}
// 初始化的时候会调用接口后获取播流地址后在执行如下代码
if (url.indexOf('rtmp:') == 0) {
liveRoomComponent && liveRoomComponent.start();
this.initPullServeMessage();
} else if (url.indexOf('https:') == 0 || url.indexOf('http:') == 0) {
if (url.indexOf('.flv') != -1) {
liveRoomComponent && liveRoomComponent.start();
this.initPullServeMessage();
}
} else {
// 播流地址不合法
wx.showToast({
title:'播流地址不合法'
})
}
目前是否还有问题这个?
基础库版本是多少呢?麻烦扫描下图贴一下截图
另外,麻烦给一下能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)