gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 05:19:44 25 4
gpt4 key购买 nike

我使用网络 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com