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