繁体   English   中英

WebRTC ICE候选无法添加

[英]WebRTC The ICE candidate could not be added

我正在尝试建立一个 p2p 音频/视频连接 b/w 两个对等方。 以下: WebRTC 入门

它在我家的 2 台 PC 之间的 LAN 环境中运行良好,但在我公司的 LAN 环境中运行时会抛出错误消息,其中一部分是 javascript

function processSignalingMessage(message) {
        var msg = JSON.parse(message);

        if (msg.type === 'offer') {
            // Callee creates PeerConnection
            if (!initiator && !started)
                maybeStart();

            // We only know JSEP version after createPeerConnection().
            if (isRTCPeerConnection)
                pc.setRemoteDescription(new RTCSessionDescription(msg));
            else
                pc.setRemoteDescription(pc.SDP_OFFER,
                        new SessionDescription(msg.sdp));

            doAnswer();
        } else if (msg.type === 'answer' && started) {
            pc.setRemoteDescription(new RTCSessionDescription(msg));
        } else if (msg.type === 'candidate' && started) {
            var candidate = new RTCIceCandidate({
                sdpMLineIndex : msg.label,
                candidate : msg.candidate
            });
            pc.addIceCandidate(candidate);
        } else if (msg.type === 'bye' && started) {
            onRemoteHangup();
        }
    }

当第一个用户收到消息“type”:“candidate”时,会出错

和控制台日志的一部分:

  • 创建对等连接
  • 使用配置 "{"iceServers":[{"url":"stun:stun.l.google.com:19302"}]}" 创建了 webkitRTCPeerConnnection
  • 添加本地 stream
  • 向对等方发送答案
  • 收到的消息: {"type":"candidate","label":0,"id":"audio","candidate":"a=candidate:1613033416 1 udp 2113937151 192.168.1.233 56946 typ host generation 0\r\ n"}
  • 未捕获的语法错误:无法在“RTCPeerConnection”上执行“addIceCandidate”:无法添加 ICE 候选
  • 收到消息:{"type":"candidat".......}
  • 未捕获的语法错误:无法在“RTCPeerConnection”上执行“addIceCandidate”:无法添加 ICE 候选
  • 收到消息:{"type":"candidat".......}
  • 未捕获的语法错误:无法在“RTCPeerConnection”上执行“addIceCandidate”:无法添加 ICE 候选

我认为您可以仅使用 msg.candidate 创建 ICE 候选消息,

var candidate = new RTCIceCandidate(msg.candidate);

并将其传递给addIceCandidate function

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM