如何在webRTC中设置服务器以进行对等连接?

时间:2019-07-18 09:49:52

标签: javascript asp.net

我将webRTC用于现场音频会议应用程序,到目前为止,我已经能够获得硬件访问权限并记录媒体,但是在将其发送到接收方时,我感到困惑,因为我的应用程序后如何设置服务器配置运行在localhost上,我不能使用任何 stun:stun.l.google.com:19302 我如何为RTCPeerConnection设置服务器,我知道我们可以使用STUN为此,但我的问题是我如何以编程方式设置它

let localPeerConnection;
localPeerConnection = new RTCPeerConnection(servers);
localPeerConnection.addEventListener('icecandidate', handleConnection);
localPeerConnection.addEventListener(
    'iceconnectionstatechange', handleConnectionChange);

0 个答案:

没有答案