RTCRtpSender: getParameters() method
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
* Some parts of this feature may have varying levels of support.
ThegetParameters() method of theRTCRtpSender interface returns an object describing the current configuration for how the sender'strack will be encoded and transmitted to a remoteRTCRtpReceiver.
In this article
Syntax
getParameters()Parameters
None.
Return value
An object indicating the current configuration of the sender.
encodingsAn array of objects, each specifying the parameters and settings for a single codec that could be used to encode the track's media.The properties of the objects include:
activetrue(the default) if the encoding is being sent,falseif it is not being sent or used.codecOptionalSelects themedia codec that is used for this encoding's RTP stream.If not set, the user agent may select any codec negotiated for sending.
channelsOptionalA positive integer indicating the number of channels supported by the codec.For example, for audio codecs a value of 1 specifies monaural sound, while 2 indicates stereo.
clockRateA positive integer specifying the codec's clock rate in Hertz (Hz).The clock rate is the rate at which the codec's RTP timestamp advances.Most codecs have specific values or ranges of values they permit.The IANA maintains alist of codecs and their parameters, including their clock rates.
mimeTypeA string indicating the codec's MIME media type and subtype, specified as a string of the form
"type/subtype".The MIME type strings used by RTP differ from those used elsewhere.IANA maintains aregistry of valid MIME types.Also seeCodecs used by WebRTC for details about potential codecs that might be referenced here.sdpFmtpLineOptionalA string giving the format specific parameters provided by the local description.
dtxDeprecatedNon-standardOnly used for an
RTCRtpSenderwhosekindisaudio, this property indicates whether or not discontinuous transmission is being used (a feature by which a phone is turned off or the microphone muted automatically in the absence of voice activity).The value is taken eitherenabledordisabled.maxBitrateA positive integer indicating the maximum number of bits per second that the user agent is allowed to grant to tracks encoded with this encoding.Other parameters may further constrain the bit rate, such as the value of
maxFramerate, or the bandwidth available for the transport or physical network.The value is computed using the standard Transport Independent Application Specific Maximum (TIAS) bandwidth as defined byRFC 3890, section 6.2.2; this is the maximum bandwidth needed without considering protocol overheads from IP, TCP or UDP, and so forth.
Note that the bitrate can be achieved in a number of ways, depending on the media and encoding.For example, for video a low bit rate might be achieved by dropping frames (a bitrate of zero might allow just one frame to be sent), while for audio the track might have to stop playing if the bitrate is too low for it to be sent.
maxFramerateA value specifying the maximum number of frames per second to allow for this encoding.
priorityA string indicating the priority of the
RTCRtpSender, which may determine how the user agent allocates bandwidth between senders.Allowed values arevery-low,low(default),medium,high.ridA string which, if set, specifies anRTP stream ID (RID) to be sent using the RID header extension.This parameter cannot be modified using
setParameters().Its value can only be set when the transceiver is first created.scaleResolutionDownByOnly used for senders whose track's
kindisvideo, this is a floating-point value specifying a factor by which to scale down the video during encoding.The default value, 1.0, means that the video will be encoded at its original size.A value of 2.0 scales the video frames down by a factor of 2 in each dimension, resulting in a video 1/4 the size of the original.The value must not be less than 1.0 (attempting to scale the video to a larger size will throw aRangeError).
transactionIdA string containing a unique ID.This value is used to ensure that
setParameters()can only be called to modify the parameters returned by a specific previous call togetParameters().This parameter cannot be changed by the caller.codecsAn array of objects describing themedia codecs that the sender has set as enabled, and is prepared to use.This parameter cannot be changed once initially set.
Each codec object in the array may have the following properties:
channelsOptionalA positive integer indicating the number of channels supported by the codec.For example, for audio codecs a value of 1 specifies monaural sound, while 2 indicates stereo.
clockRateA positive integer specifying the codec's clock rate in Hertz (Hz).The clock rate is the rate at which the codec's RTP timestamp advances.Most codecs have specific values or ranges of values they permit.The IANA maintains alist of codecs and their parameters, including their clock rates.
mimeTypeA string indicating the codec's MIME media type and subtype, specified as a string of the form
"type/subtype".The MIME type strings used by RTP differ from those used elsewhere.IANA maintains aregistry of valid MIME types.Also seeCodecs used by WebRTC for details about potential codecs that might be referenced here.payloadTypeTheRTP payload type used to identify this codec.
sdpFmtpLineOptionalA string giving the format specific parameters provided by the local description.
headerExtensionsAn array of zero or more RTP header extensions, each identifying an extension supported by the sender or receiver. Header extensions are described inRFC 3550, section 5.3.1.This parameter cannot be changed once initially set.
rtcpAn object providing the configuration parameters used forRTCP on the sender.This parameter cannot be changed.
The object may have the following properties:
cnameA read-only string giving the canonical name (CNAME) used by RTCP (e.g., in SDES messages).
reducedSizeA read-only boolean that is
Trueif reduced size RTCP is configured (RFC 5506), andFalseif compound RTCP is specified (RFC 3550).
degradationPreferenceDeprecatedOptionalSpecifies the preferred way the WebRTC layer should handle optimizing bandwidth against quality in constrained-bandwidth situations.The possible values are
maintain-framerate,maintain-resolution, orbalanced.The default value isbalanced.
Examples
This example gets the sender's current transaction ID; the transaction ID uniquely identifies the current set of parameters, to ensure that calls tosetParameters() are always handled in the correct order, avoiding inadvertently overwriting parameters with older parameters.
function getSenderTransactionID(sender) { let parameters = sender.getParameters(); return parameters.transactionId;}In the same way, this code gets the canonical name (CNAME) being used forRTCP on anRTCRtpSender.
function getRtpCNAME(sender) { let parameters = sender.getParameters(); return parameters.rtcp.cname;}Specifications
| Specification |
|---|
| WebRTC: Real-Time Communication in Browsers> # dom-rtcrtpsender-getparameters> |