RTCRtpParameters - Web APIs 编辑
The RTCRtpParameters
dictionary is the basic object describing the parameters of an RTP transport. It is extended separately for senders and receivers in the form of the RTCRtpSendParameters
and RTCRtpReceiveParameters
dictionaries.
To obtain the parameters of a sender or receiver, call its getParameters()
method:
Properties
codecs
- An array of
RTCRtpCodecParameters
objects describing the set of codecs from which the sender or receiver will choose. This parameter cannot be changed once initially set. headerExtensions
- An array of zero or more RTP header extensions, each identifying an extension supported by the sender or receiver. Header extensions are described in RFC 3550: 5.3.1. This parameter cannot be changed once initially set.
rtcp
- An
RTCRtcpParameters
object providing the configuration parameters used for RTCP on the sender or receiver. This parameter cannot be changed once initially set.
Examples
This example obtains the canonical name (CNAME) being used for RTCP on an RTCRtpSender
or RTCRtpReceiver
.
function getRtpCNAME(rtpObject) {
let parameters = rtpObject.getParameters();
return parameters.rtcp.cname;
}
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCRtpReceiveParameters' in that specification. | Candidate Recommendation | Initial definition. |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论