在 SIP 视频端点之间共享视频通道上的内容?

发布于 2024-10-12 16:24:55 字数 99 浏览 2 评论 0原文

是否有多个“m=video”行在具有不同标签 ID 的同一 SDP 中发送的实现?谁能举个例子吗?如果可用,BFCP 协议是否可用于控制除 spkr 或 alt 通道之外的主视频通道?

Are there implementations were multiple "m=video" lines are sent in same SDP with different label ids? Can anyone give an example for it? If available, Can BFCP protocol be used to control the main video channel apart from the spkr or alt channels?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱绻入梦 2024-10-19 16:24:55

有多个“m=video”行在具有不同标签 id 的同一 SDP 中发送的实现。示例是视频会议,其中一位参与者在通话期间共享演示文稿。 SDP 示例:

 v=0
 o=Alice 330742730 33077831 IN IP4 172.101.72.11
 s=lecture
 c=IN 172.101.72.11
 t=0 0
 m=video 52986 RTP/AVP 31
 a=rtpmap:31 H261/9000
 a=content:slides
 m=video 53134 RTP/AVP 31
 a=rtpmap:31 H261/9000
 a=content:main

“slides”是演示流,“main”是主视频流。
流由 SIP 和 BFCP 控制。 BFCP 用于“请求许可”发送第二个流,而 SIP Offer/Answer 模型(即通过 Invite 或 Update 发送 SDP 消息)用于实际打开流。
例如,如果参与者希望开始向其他参与者演示,他首先通过发送 BFCP“发言请求”来请求许可,然后通过发送带有添加新 SDP 的 Re-Invite 来打开流第二行“m=video”。
您可以从 IMTC SIP 平价活动组获取更多详细信息:
http://www.imtc.org/uc/sip-parity-activity-组/

There are implementations with multiple "m=video" lines are sent in same SDP with different label ids. Example is Video conference when one of the participants is sharing a presentation during the call. SDP example:

 v=0
 o=Alice 330742730 33077831 IN IP4 172.101.72.11
 s=lecture
 c=IN 172.101.72.11
 t=0 0
 m=video 52986 RTP/AVP 31
 a=rtpmap:31 H261/9000
 a=content:slides
 m=video 53134 RTP/AVP 31
 a=rtpmap:31 H261/9000
 a=content:main

“slides” is the presentation stream and “main” is the main Video stream.
The streams are controlled by both SIP and BFCP. BFCP is used for “asking permission” to send the second stream, and SIP Offer/Answer model (i.e., sending SDP messages over Invite or Update) for actually open the stream.
For example, if participant wishes to start presenting to other participants, he first asks for permission by sending BFCP “floor request”, and then opens the stream by send a Re-Invite with a new SDP adding the second “m=video” line.
You can get more details from IMTC SIP Parity Activity Group:
http://www.imtc.org/uc/sip-parity-activity-group/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文