- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用网络 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/
这个问题已经有答案了: RTCPeerConnection.createAnswer callback returns undefined object in mozilla for WebRTC c
我想测试我的 C++ 应用程序和浏览器 JavaScript 之间的连接。现在我没有涉及服务器,我正在通过标准 IO 自己做信号处理。问题是当我尝试将 native 应用程序生成的 sdp 传递给 j
我正在尝试在我的 Android 应用程序中实现 RTC。我的 Android 客户端就是要约。 我使用 setLocalDescription 并发送我的 SessionDescription。问题
部分代码如下所示: if (message.type === 'offer') { console.log("got offer"); console.log(message);
以下是我接受创建的报价并创建答案的方式: var description = new RTCSessionDescription(sdp), self = this; connection.s
当我从 janus-gateway 获取 sdp 并尝试将其设置为远程描述时,我使用 webrtc flutter 插件在我的 android webrtc 应用程序上不断收到此错误。 我试过调整 s
我使用网络 Rtc 和网络套接字创建了一个简单的视频通话应用程序。但是当我运行代码时,出现了以下错误。 DOMException [InvalidStateError: "setRemoteDescr
我正在使用随 cocoapods 安装的 libjingle_peerconnection。当我通过调用者的信令服务器收到 SDP 报价时,我试图将其设置为远程描述,这会触发 RTCSessionDe
我是一名优秀的程序员,十分优秀!