RTCRtpCapabilities - Web APIs 编辑
The RTCRtpCapabilities
dictionary is a data type used to describe the capabilities of an RTCRtpSender
or RTCRtpReceiver
in response to a call to the RTCRtpSender.getCapabilities()
or RTCRtpReceiver.getCapabilities()
static functions, both of which return an array of RTCRtpCapabilities
objects.
An RTCRtpCapabilities
object contains an array of objects conforming to RTCRtpCodecCapability
(each describing the capabilities of one codec) and an array of the supported RTP header extensions for that codec.
Properties
codecs
- An array of
RTCRtpCodecCapability
objects, each describing one of the codecs supported by theRTCRtpSender
orRTCRtpReceiver
. There are some special entries in this array, described below in the section The codecs array. headerExtensions
- An array of objects conforming to the
RTCRtpHeaderExtensionCapability
dictionary. Each object contains a singleDOMString
,uri
, specifying the URI of the header extension, as described in RFC 5285.
Description
The codecs array
The codecs
array is an array of objects conforming to the dictionary RTCRtpCodecCapability
. Each of these objects describes a single codec and its basic capabilities. Its properties are:
{{page("/en-US/docs/Web/API/RTCRtpCodecCapabilities", "Properties")}}
The browser will only report distinct capability combinations separately. If two sets of capabilities can be described as one, they will be. That means that, for instance, if there are two entries for the H.264 codec (as identified by the mimeType
being "video/H264"), there are other values in the capabilities objects indicating how they're different in some way.
The MIME type strings used by RTP differ from those used elsewhere. See RFC 3555, section 4 for the complete IANA registry of these types.
There are three special entries that should always be present, representing underlying components of the transport. Those components are:
- RED (REDundant Audio Data)
- The media type of an RED entry may vary due to there being several versions of it, but it will end with
red
, such asvideo/red
orvideo/fwdred
. The base RED standard can be found in RFC 2198. There may be multiple entries for RED if different forms are supported; each will have a unique media type in that case. - FEC (Forward Error Correction)
- An FEC component handles error correction data; its media type may also vary due to there being advanced versions of the standard available, but it will always end with
fec
. One possible value isvideo/ulpfec
(a generic error connection model). There may also be multiple FEC entries if more than one form is supported. - RTX (Retransmission)
- This component is responsible for retransmission of data; it's media type should be
video/rtx
. There will only be one entry for RTX, and it will not have ansdpFmtpLine
property.
Don't be surprised to see these show up ijn the list; be prepared to ignore them if you're only interested in the actual codecs used for the media itself.
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCRtpCapabilities' in that specification. | Candidate Recommendation |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论