RTCIceTransport.getLocalCandidates() - Web APIs 编辑
The RTCIceTransport
method getLocalCandidates()
returns an array of RTCIceCandidate
objects, one for each of the candidates that have been gathered by the local device during the current ICE agent session.
The local candidates are placed in this list by the ICE agent prior to being delivered to the local client's code in an icecandidate
event so that the client can forward the candidates to the remote peer.
Syntax
localCandidates = RTCIceTransport.getLocalCandidates();
Parameters
None.
Return value
A JavaScript Array
containing one RTCIceCandidate
object for each candidate that has been identified so far during the ICE candidate gathering session.
You can't correlate these local candidates with matching remote candidates. To find the best match found so far, call RTCIceTransport.getSelectedCandidatePair()
.
Example
This simple example gets the local candidate list from the RTCIceTransport
for the first RTCRtpSender
on the RTCPeerConnection
, then outputs to the console all of the candidates in the list.
var localCandidates = pc.getSenders()[0].transport.transport.getLocalCandidates();
localCandidates.forEach(function(candidate, index)) {
console.log("Candidate " + index + ": " + candidate.candidate);
});
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCIceCandidate.getLocalCandidates()' in that specification. | Candidate Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论