gpt4 book ai didi

javascript - WebRTC STUN 服务器如何反馈 SDP 和 ICE 候选人?

转载 作者:搜寻专家 更新时间:2023-10-31 08:45:36 27 4
gpt4 key购买 nike

为了我自己,我正在逐步测试 WebRTC 程序。

我为无服务器 WebRTC 编写了一些测试站点。

http://webrtcdevelop.appspot.com/

其实使用的是google的STUN服务器,但没有部署信令服务器。

session 描述协议(protocol) (SDP) 是手动交换的,即浏览器窗口之间的 CopyPaste。

enter image description here

enter image description here

enter image description here enter image description here

到目前为止,这是我用代码得到的结果:

'use strict';

var peerCon;
var ch;

$(document)
.ready(function()
{
init();

$('#remotebtn2')
.attr("disabled", "");

$('#localbtn')
.click(function()
{
offerCreate();

$('#localbtn')
.attr("disabled", "");
$('#remotebtn')
.attr("disabled", "");

$('#remotebtn2')
.removeAttr("disabled");
});

$('#remotebtn')
.click(function()
{
answerCreate(
new RTCSessionDescription(JSON.parse($('#remote')
.val())));

$('#localbtn')
.attr("disabled", "");
$('#remotebtn')
.attr("disabled", "");

$('#remotebtn')
.attr("disabled", "");
});

$('#remotebtn2')
.click(function()
{
answerGet(
new RTCSessionDescription(JSON.parse($('#remote')
.val())));

$('#remotebtn2')
.attr("disabled", "");
});
});


var init = function()
{
//offer------
peerCon =
new RTCPeerConnection(
{
"iceServers": [
{
"url": "stun:stun.l.google.com:19302"
}]
},
{
"optional": [
{
"RtpDataChannels": true
}]
});

peerCon.onicecandidate = function(e)
{
console.log(e);
};

ch = peerCon.createDataChannel(
'ch1',
{
reliable: false
});
ch.onopen = function()
{
alert('ch.onopen');
ch.send("hello chat!");
};
ch.onmessage = function(e)
{
alert(e.data);
};


};

var offerCreate = function()
{
peerCon
.createOffer(function(description)
{
peerCon
.setLocalDescription(description, function()
{
console.log(JSON.stringify(description));
$('#local')
.text(JSON.stringify(description));
}, error);
}, error);

};

var answerCreate = function(descreption)
{
peerCon
.setRemoteDescription(descreption, function()
{
peerCon
.createAnswer(
function(description)
{
peerCon
.setLocalDescription(description, function()
{
console.log(JSON.stringify(description));
$('#local')
.text(JSON.stringify(description));

}, error);
}, error);
}, error);

};
var answerGet = function(description)
{
peerCon.setRemoteDescription(description, function()
{ //
console.log(JSON.stringify(description));
alert('local-remote-setDescriptions complete!');
}, error);
};

var error = function(e)
{
console.log(e);
};
  • 火狐(26.0):RtpDataChannelsonopen 事件成功触发,但 send 失败。

  • Chrome(31.0):RtpDataChannelsonopen 事件未被触发。

所以,我的问题是,

我想知道为什么 Chrome 在 RtpDataChannels 上失败onopen 事件,以及如何修复。

可能更重要的是,我想了解如何管理 ICE .onicecandidate 事件。

例如,从 STUN 服务器反馈的 Offer Local Description 是。如下:

{"sdp":"v=0\r\no=- 7430372191078664219 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio data\r\na=msid-semantic: WMS\r\nm=audio 1 RTP/SAVPF 111 103 104 0 8 106 105 13 126\r\nc=IN IP4 0.0.0.0\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=ice-ufrag:Gj7WBxZNS7HswoxM\r\na=ice-pwd:FsXen3Tz2sXdXV31splr7WKg\r\na=ice-options:google-ice\r\na=fingerprint:sha-256 EF:67:28:00:41:B6:08:A3:C5:27:BF:38:84:83:CF:8D:DC:CC:95:A9:6C:DB:77:44:DA:B2:D1:05:39:73:99:D1\r\na=setup:actpass\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=recvonly\r\na=rtcp-mux\r\na=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:ZTGRIJAdH3o1Y1T/6gF3YUtCF5CTdsaEkjWCtWJ+\r\na=rtpmap:111 opus/48000/2\r\na=fmtp:111 minptime=10\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:126 telephone-event/8000\r\na=maxptime:60\r\nm=application 1 RTP/SAVPF 101\r\nc=IN IP4 0.0.0.0\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=ice-ufrag:Gj7WBxZNS7HswoxM\r\na=ice-pwd:FsXen3Tz2sXdXV31splr7WKg\r\na=ice-options:google-ice\r\na=fingerprint:sha-256 EF:67:28:00:41:B6:08:A3:C5:27:BF:38:84:83:CF:8D:DC:CC:95:A9:6C:DB:77:44:DA:B2:D1:05:39:73:99:D1\r\na=setup:actpass\r\na=mid:data\r\na=sendrecv\r\nb=AS:30\r\na=rtcp-mux\r\na=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:ZTGRIJAdH3o1Y1T/6gF3YUtCF5CTdsaEkjWCtWJ+\r\na=rtpmap:101 google-data/90000\r\na=ssrc:3757983348 cname:ojw6/osqSDh7tsMo\r\na=ssrc:3757983348 msid:ch1 ch1\r\na=ssrc:3757983348 mslabel:ch1\r\na=ssrc:3757983348 label:ch1\r\n","type":"offer"}

我能看到的唯一 IP 是 127.0.0.1,即 localhost,但我想 SDP 信息中应该包含一些全局地址,因为没有它,我们可以仅在本地连接。

所以,我想我需要将各种 ICE 候选人 onicecaditate 事件与 SDP 合并,但我不确定如何,我认为这个问题与测试失败有关。

感谢任何阅读建议。

编辑:好的,这可能是我现在正在关注的同一主题:

necessary to send ice candidates across, or do they come packaged in offer/answer data? https://groups.google.com/forum/#!topic/discuss-webrtc/UOnopWJ1l44

最佳答案

necessary to send ice candidates across, or do they come packaged in offer/answer data? >https://groups.google.com/forum/#!topic/discuss-webrtc/UOnopWJ1l44

除了最初的 SDP 包之外,Chrome 发送 ICE 候选人独立到达,当 ICE 候选人到达时,他们自动进入/更新 LocalDescription。

因此,需要等待ICE候选系列完成,即标有空ICE候选对象,然后输出/发送到信令服务器。

有了上面的发现修改代码,现在情况发生了变化:有关详细信息,请参阅我的下一个问题。 (至今未解决2013/12/17)

WebRTC SDP object (local description) by Firefox does not contain DataChannel info unlike Chrome?

关于javascript - WebRTC STUN 服务器如何反馈 SDP 和 ICE 候选人?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20607002/

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