我在浏览器控制台中遇到的错误(仅出现在chrome中,firefox中没有错误)是错误:无法在“ RTCPeerConnection”上执行“ addIceCandidate”:无法添加ICE候选者。
我遵循了一个教程,并且能够使用nodejs进行p2p视频聊天。现在我在服务器端使用Flask和python,在客户端使用angularjs。
两个对等节点的信令过程是通过angular-socketio完成的。
console.log("The user connected to the socket");
socket.emit('readyToJoinRoom', {"signal_room": SIGNAL_ROOM});
//Send a first signaling message to anyone listening
//This normally would be on a button click
socket.emit('signal',{"type":"user_joined", "message":"Are you ready for a call?", "room":SIGNAL_ROOM});
socket.forward('signaling_message', $scope);
$scope.$on('socket:signaling_message', function (ev, data) {
displaySignalMessage("Signal received: " + data.type);
// Setup the RTC Peer Connection object
if (!rtcPeerConn) {
startSignaling();
}
if(data.type != "user_joined") {
console.log(data.message);
var message = JSON.parse(data.message);
console.log(message);
if(message.sdp) {
console.log("inside 2nd if statement");
rtcPeerConn.setRemoteDescription(new RTCSessionDescription(message.sdp), function () {
// if we received an offer, we need to answer
if(rtcPeerConn.remoteDescription.type === 'offer') {
console.log("inside third if for remoteDescription."); // This never executes, error happens right before this line
rtcPeerConn.createAnswer(sendLocalDesc, logError);
}
}, logError);
}
else {
console.log("addedddddddd ice candidate.");
rtcPeerConn.addIceCandidate(new RTCIceCandidate(message.candidate));
}
}
});
一旦两个人加入会议室,就会调用startSignaling()方法。它设置了本地描述并完成了3个ice候选对象,然后我收到了SDP,但是即使它在控制台中以等于提供的类型打印SDP,它也永远不会是if(rtcPeerConn.remoteDescription.type ==='offer')。我不确定为什么它永远不会出现在if语句中。我不确定为什么会出错。如果你有问题,就问吧。谢谢您的帮助。
最佳答案
我认为
rtcPeerConn.setRemoteDescription(new RTCSessionDescription(message.sdp),...
将不起作用,因为RTCSessionDescription的构造函数需要有关类型和sdp的信息。尝试:
var desc = new RTCSessionDescription();
desc.sdp = message.sdp;
desc.type = "offer";
rtcPeerConn.setRemoteDescription(desc,.....
我也有一些从JSON构造
RTCSessionDescription
的问题。希望这可以帮助...