websocket - [无效状态错误 : "setRemoteDescription needs to called before addIceCandidate" code: 11

标签 websocket webrtc videochat

我使用网络 Rtc 和网络套接字创建了一个简单的视频通话应用程序。 但是当我运行代码时,出现了以下错误。

DOMException [InvalidStateError: "setRemoteDescription 需要在 addIceCandidate 之前调用" 代码:11

我不知道如何解决这个错误。 下面是我的代码:

enter code here

var localVideo;
var remoteVideo;
var peerConnection;
var uuid;
var localStream;
var peerConnectionConfig = {
'iceServers': [
    {'urls': 'stun:stun.services.mozilla.com'},
    {'urls': 'stun:stun.l.google.com:19302'},
]
};

function pageReady() {
    uuid = uuid();
    console.log('Inside Page Ready');
    localVideo = document.getElementById('localVideo');
    remoteVideo = document.getElementById('remoteVideo');

   serverConnection = new WebSocket('wss://' + window.location.hostname + 
   ':8443');
   serverConnection.onmessage = gotMessageFromServer;

   var constraints = {
       video: true,
       audio: true,
   };

   if(navigator.mediaDevices.getUserMedia) {

   navigator.mediaDevices.getUserMedia(constraints)
   .then(getUserMediaSuccess).catch(errorHandler);
   }else
   {
       alert('Your browser does not support getUserMedia API');
   }
   }

   function getUserMediaSuccess(stream) {
        localStream = stream;
        localVideo.src = window.URL.createObjectURL(stream); 
   }

   function start(isCaller) {
       console.log('Inside isCaller');
       peerConnection = new RTCPeerConnection(peerConnectionConfig);
       peerConnection.onicecandidate = gotIceCandidate;
       peerConnection.onaddstream = gotRemoteStream;
       peerConnection.addStream(localStream);

       if(isCaller) {
            console.log('Inside Caller to create offer');
            peerConnection.createOffer().
            then(createdDescription).catch(errorHandler);
       }
      }

   function gotMessageFromServer(message) {
   console.log('Message from Server');
   if(!peerConnection) 
   {
        console.log('Inside !Peer Conn');
        start(false);
   }

   var signal = JSON.parse(message.data);

   // Ignore messages from ourself
   if(signal.uuid == uuid) return;

   if(signal.sdp) {
        console.log('Inside SDP');
        peerConnection.setRemoteDescription(new 
        RTCSessionDescription(signal.sdp)).then(function() {
        // Only create answers in response to offers
        if(signal.sdp.type == 'offer') {
            console.log('Before Create Answer');
            peerConnection.createAnswer().then(createdDescription)
            .catch(errorHandler);
        }
     }).catch(errorHandler);
     } else if(signal.ice) {
           console.log('Inside Signal Ice');
           peerConnection.addIceCandidate(new 
           RTCIceCandidate(signal.ice)).catch(errorHandler);
     }

    }

    function gotIceCandidate(event) {
         console.log('Inside Got Ice Candi');
         if(event.candidate != null) {
         serverConnection.send(JSON.stringify({'ice': event.candidate, 
         'uuid': uuid}));
    }
  }

  function createdDescription(description) {
  console.log('got description');

    peerConnection.setLocalDescription(description).then(function() {
    console.log('Inside Setting ');
    serverConnection.send(JSON.stringify({'sdp': 
    peerConnection.localDescription, 'uuid': uuid}));
   }).catch(errorHandler);
  }

  function gotRemoteStream(event) {
  console.log('got remote stream');
  remoteVideo.src = window.URL.createObjectURL(event.stream);
  }

  function errorHandler(error) {
     console.log(error);
  }

  // Taken from http://stackoverflow.com/a/105074/515584
  // Strictly speaking, it's not a real UUID, but it gets the job done here
  function uuid() {
      function s4() {
      return Math.floor((1 + Math.random()) * 
      0x10000).toString(16).substring(1);
      }

  return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + 
  s4() + s4();
  }

这是我的代码,我不知道如何安排 addIceCandidate 和 addRemoteDescription 函数。

最佳答案

你需要确保 peerConnection.addIceCandidate(new RTCIceCandidate(signal.ice)) 在设置描述后调用。 您遇到了收到 ice candidate 并尝试在 peerConnection 完成设置描述之前将其添加到 peerConnection 的情况。

我有类似的情况,我创建了一个数组来存储在设置描述完成之前到达的候选人,以及一个检查描述是否设置的变量。如果设置了描述,我会将候选人添加到 peerConnection,否则我会将它们添加到数组。 (当您将变量设置为 true 时,您还可以遍历数组并将所有存储的候选者添加到 peerConnection。

关于websocket - [无效状态错误 : "setRemoteDescription needs to called before addIceCandidate" code: 11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45571768/

相关文章:

java - 如何将 OpenCV WebRTC Stream 导入 Java

javascript - 我们可以使用 JavaScript 在 ROBLOX 中的两个 Gmail 用户之间建立连接

ionic-framework - 如何创建 ionic 视频聊天应用程序

centos - 使用 Docker 在 Cent OS 6.6 中安装和运行 Kurento 媒体服务器

javascript - Socket io,JavaScript 数据未在表中更新自身

security - Websocket 安全

node.js - 如何关闭 socket.io 1.0 中的服务器?

google-chrome - 为什么sipml5为音频RTP、音频RTCP、视频RTP和视频RTCP创建具有相同端口的webRTC邀请请求?

javascript - 使用 HTML5、javascript 的视频聊天客户端

node.js - 在 NodeJS 中存储临时变量