我使用网络Rtc和websockets创建了一个简单的视频通话应用。 但是当我运行代码时,发生以下错误。
DOMException [InvalidStateError:" setRemoteDescription需要在addIceCandidate&#34之前调用; 代码: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函数。
答案 0 :(得分:0)
WebRTC的工作方式(据我所知)你必须让两个同行达成协议,以便按照向同伴提供报价的顺序进行交流,让同伴回答并选择ICE候选人如果您要发送媒体流进行视频对话,则进行通信
你有一个很好的例子来看看如何实现这些功能以及你可以访问的顺序https://github.com/alexan1/SignalRTC他对如何做到这一点有很好的理解。
此时您可能已经找到了问题的解决方案,但是如果您不这样做,我会回复。
答案 1 :(得分:0)
你需要确保这一点
peerConnection.addIceCandidate(new RTCIceCandidate(signal.ice))
在设置描述后调用。
您有接收冰候选者的情况,并尝试在peerConnection完成设置描述之前将其添加到peerConnection。
我有类似的情况,我创建了用于存储在设置描述完成之前到达的候选者的数组,以及用于检查描述是否已设置的变量。如果设置了description,我会将候选添加到peerConnection,否则我会将它们添加到数组中。 (当您将变量设置为true时,您还可以通过数组并将所有存储的候选项添加到peerConnection。
答案 2 :(得分:0)
编辑:据我所知,此解决方案是一种反模式,您应该不以这种方式实施。有关如何在保持合理流程的同时解决问题的更多信息,请遵循以下答案和评论部分:https://stackoverflow.com/a/57257449/779483
TLDR:,而不是在信令信息到达后立即调用addIceCandidate
,而是将候选者添加到队列中。致电setRemoteDescription
后,遍历候选人队列,并在每个队列上致电addIceCandidate
。
-
从this answer中我了解到,在添加Ice Candidates数据之前,我们必须调用setRemoteDescription(offer)
。
所以,在扩展@Luxior答案时,我做了以下事情:
remoteIsReady
)addIceCandidate
setRemoteDescription
之后(在应答信号或应答客户端操作中):
addIceCandidate
。remoteIsReady
)设置为true