如何将我的本地视频流发送到多个远程对等点?我是否需要为PeerConnection
每个远程对等方实例化一个?还是可以同时PeerConnection
用于所有远程对等点?
问问题
4041 次
1 回答
13
根据 irc.w3.org 上#webrtc 上的用户dom
的说法,每个 PeerConnection 都与一个远程对等点相关联。开发人员负责与多个共享相同的流实例PeerConnections
:
<Cow_woC> Can a single PeerConnection connect to multiple remote peers, or only a single one at a time? If I want to stream the same video to multiple remote peers, what am I supposed to do?
<dom> Cow_woC, you need to manage several PeerConnection objects
<dom> and plug your video stream to each of them
<Cow_woC> dom: How do I share the camera feed with multiple PeerConnections? Is getUserMedia() allowed to return the same resource (and share it) multiple times?
<Cow_woC> dom: Or am I responsible for keeping the reference around and passing it to multiple PeerConnections?
<dom> the latter
于 2012-12-18T16:20:36.327 回答