admin管理员组文章数量:1431718
I am creating a group video call application using WebRTC. Currently I am using MESH architecture. Creating peer connection as below -
var peer_connection = new RTCPeerConnection(
{"iceServers": ICE_SERVERS},
{"optional": [{"DtlsSrtpKeyAgreement": true}]}
);
I want to use SFU with WebRTC. Can anyone please tell how to do same or share any documentation regarding same. What changes would be required in code for creating SFU based connection?
I am creating a group video call application using WebRTC. Currently I am using MESH architecture. Creating peer connection as below -
var peer_connection = new RTCPeerConnection(
{"iceServers": ICE_SERVERS},
{"optional": [{"DtlsSrtpKeyAgreement": true}]}
);
I want to use SFU with WebRTC. Can anyone please tell how to do same or share any documentation regarding same. What changes would be required in code for creating SFU based connection?
Share Improve this question asked Jun 8, 2020 at 14:00 InderpalInderpal 111 silver badge2 bronze badges 1- If the answer solved your problem you can mark it as solved – Dirk V Commented Jun 13, 2020 at 10:42
1 Answer
Reset to default 5An SFU is very different. It passes all the data through a central server which redirects them to every consumer. Here is an example project where a room based SFU is implemented using mediasoup
本文标签: javascriptSFU (Selective Forwarding Unit) with WebRTCStack Overflow
版权声明:本文标题:javascript - SFU (Selective Forwarding Unit) with WebRTC - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745550256a2662909.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论