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 字典。

To obtain the parameters of a sender or receiver, call its getParameters() 方法:

特性

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
RTCRtcpParameters object providing the configuration parameters used for RTCP on the sender or receiver. This parameter cannot be changed once initially set.

范例

This example obtains the canonical name (CNAME) being used for RTCP RTCRtpSender or RTCRtpReceiver .

function getRtpCNAME(rtpObject) {
  let parameters = rtpObject.getParameters();
  return parameters.rtcp.cname;
}
					

规范

规范 状态 注释
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCRtpReceiveParameters' in that specification.
候选推荐 初始定义。

浏览器兼容性

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

No compatibility data found. Please contribute data for "api.RTCRtpReceiveParameters" (depth: 1) to the MDN 兼容性数据存储库 .

元数据

  • 最后修改: