首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >streamid: no exist?

混流的时候需要输入主播和小主播的id,这两个值怎么获取到?小主播需要登录吗?还是直接调用{add_anchor}这一个接口就可以了?

回答 1

御姐万岁

发布于 2020-10-15 10:09:41

用的SDK推流吗

和开发者交流更多问题细节吧,去 写回答
相关文章
gRPC12# 协议错误问题定位
先看下这个帧的含义:用于关闭连接或者发出错误, 端点必须将带有0x0以外的流标识符的GOAWAY帧视为类型为PROTOCOL_ERROR的连接错误
瓜农老梁
2021/12/09
2K0
gRPC12# 协议错误问题定位
运行Sqoop出现hcatalog does not exist!...accumulo does not exist!解决方案
有一段时间没用sqoop了,今天打开进行测试的时候,发现命令行总是出现下面这样的警示信息:
大数据梦想家
2021/01/27
3.1K0
运行Sqoop出现hcatalog does not exist!...accumulo does not exist!解决方案
The APK file does not exist on disk
Android Studio 运行报错:The APK file does not exist on disk
yechaoa
2022/06/10
4140
The APK file does not exist on disk
storm从入门到放弃(三),放弃使用 StreamId 特性
  序:StreamId是storm中实现DAG有向无环图的重要一个特性,但是从实际生产环境来看,这个功能其实蛮影响生产环境的稳定性的,我们系统在迭代时会带来整体服务的不可用。
intsmaze-刘洋
2018/08/29
5190
storm从入门到放弃(三),放弃使用  StreamId  特性
The destination folder does not exist or is not writeable
问题描述:打包时出现错误:The destination folder does not exist or is not writeable
全栈程序员站长
2021/12/23
7050
The destination folder does not exist or is not writeable
EasyGBS添加新内核后云端录像无法下载问题优化
云端录像是我们前几年开发的功能,在EasyGBS、EasyCVR中均有运用。在多数项目中,云端录像的可控性、回溯性都给管理者提供了很大的便捷性。云端录像的接口需要被调用后才能使用,同时也支持修改云端录像的存储位置。
TSINGSEE青犀视频
2021/07/30
5760
Laravel Class config does not exist in
修改了Laravel里面的.env文件之后报这个错误,找半天,找到罪魁祸首了,错误信息:
全栈程序员站长
2022/07/08
3820
MySQL [ERROR] Table 'mysql.user' doesn't exist
    一次源码新装的mysql,由于没有复制my-default.cnf到/etc/my.cnf位置,在启动mysql的时候碰到了无法打开mysql.user表的错误。具体错误为:[ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.user' doesn't exist。下面是该错误的描述及其解决办法。
Leshami
2018/08/13
4K0
ORA-00942: table or view does not exist
      在过程,包,函数,触发器中调用Oracle相关动态性能视图时,需要授予适当的权限,否则会收到表和视图不存在的错误提示。即使你可以单独查询这些视图。因为动态性能视图依赖于底层表,无法直接对其授予权限。下面就是这个现象相关的例子。
Leshami
2018/08/13
2.1K0
BAT 批处理脚本教程exist问题
用户3519280
2023/07/08
2390
How AI and Human Co-exist --- Kaifu Lee
AI is massively transforming our world, but there's one thing it cannot do: love. In a visionary talk, computer scientist Kai-Fu Lee details how the US and China are driving a deep learning revolution -- and shares a blueprint for how humans can thrive in the age of AI by harnessing compassion and creativity. "AI is serendipity," Lee says. "It is here to liberate us from routine jobs, and it is here to remind us what it is that makes us human."
xcigar
2018/09/25
6130
ORA-01919: role ‘PLUSTRACE’ does not exist
环境:Oracle 10g,11g. 现象:在一次迁移测试中,发现有这样的角色赋权会报错不存在: SYS@orcl> grant PLUSTRACE to jingyu; grant PLUSTRACE to jingyu       * ERROR at line 1: ORA-01919: role 'PLUSTRACE' does not exist
星哥玩云
2022/08/17
5110
ORA-01919: role 'PLUSTRACE' does not exist
环境:Oracle 10g,11g. 现象:在一次迁移测试中,发现有这样的角色赋权会报错不存在:
Alfred Zhao
2022/05/06
4470
解决异常Circular dependencies cannot exist in RelativeLayout
今天碰到这个error:E/AndroidRuntime( 4657): Uncaught handler: thread main exiting due to uncaught e xception E/AndroidRuntime( 4657): java.lang.IllegalStateException: Circular dependencies cannot exist in RelativeLayout 有点郁闷,我用的是skd1.5,在1.5的机器上(HTC G3)已经测试过了,没有问题的,但放在华为c8500(2.1update)上就报上面的错了,怎么回事呢? 根据提示判断应该是布局的原因,于是找到RelativeLayout的布局,找出最可疑的那个,注释后,不报错了。好就是他的原因,挨个看里面的元素,看属性,没错啊,后来发现, <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true"> <TextView android:id="@+id/titleName" android:text="首页" android:textColor="@color/white" android:layout_toLeftOf="@+id/homeBtn" android:layout_marginRight="2px" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView> <ImageButton android:id="@+id/homeBtn" android:layout_toRightOf="@+id/titleName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/main" android:background="@null" android:layout_marginRight="10px"> </ImageButton> </RelativeLayout> 后来改成: <RelativeLayout android:layout_width="wrap_content" android:layout_marginRight="10px" android:layout_height="wrap_content" android:layout_alignParentRight="true"> <TextView android:id="@+id/titleName" android:text="首页" android:textColor="@color/white" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView> <ImageButton android:id="@+id/homeBtn" android:layout_marginLeft="2px" android:layout_marginTop="2px" android:layout_toRightOf="@+id/titleName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/main" android:background="@null" > </ImageButton> </RelativeLayout> 能看到区别吗?对就是在titleName中去掉了相对homeBtn的位置信息。再看看报错提示,人家说我在RelativeLayout中存在循环的相关,就是说的这个了。 不过1.5版本的不报错,这就是后续版本的改进吗?
黄啊码
2020/05/29
1.5K0
eclipse提示db-record doesn't exist
突然Eclipse就无法运行Junit测试了,提示xx doesn't exist,在网上查了下无果,最终发现是运行Junit的项目配置项出了问题
johnhuster的分享
2022/03/28
5010
eclipse提示db-record doesn't exist
Mysql The user specified as a definer ('test'@'%') does not exist
我们在mysql创建view、trigger、function、procedure、event时都会定义一个Definer=‘xxx’,类似如下:
二十三年蝉
2020/04/10
2.1K0
LeetCode 1346. Check If N and Its Double Exist
题目 class Solution { public: bool checkIfExist(vector<int>& arr) { for(int i=0;i<arr.size();i++) { for(int j=0;j<arr.size();j++) { if(i==j) continue; if
ShenduCC
2020/02/17
4450
点击加载更多

相似问题

指定streamid进入房间,分享屏幕对方收到的streamid不是指定的?

0241

流列表 的streamid为空?

0204

根据streamid云点播合成报错?

0189

实时音视频StreamID如何使用?

1254

cp:file exist?

1412
相关问答用户
德勤 | 审计擅长5个领域
擅长1个领域
腾讯 | 高级产品经理擅长1个领域
腾讯 | 腾讯云通信团队擅长4个领域
腾讯 | 技术咨询工程师
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档