Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since August 2023.
Note: This feature is available in Dedicated Web Workers.
The getMetadata() method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
This includes information about the frame, such as its size, video encoding, other frames needed to construct a full image, timestamp, and other information.
None.
An object with the following properties:
contributingSourcesAn Array of sources (ssrc) that have contributed to the frame. Consider the case of a conferencing application that combines the audio and video from multiple users. The synchronizationSource would include the ssrc of the application, while contributingSources would include the ssrc values of all the individual video and audio sources.
dependenciesAn Array of positive integers indicating the frameIds of frames on which this frame depends. For a key frame this will be empty, as a key frame contains all the information it needs to construct the image. For a delta frame this will list all the frames needed to render this frame. The type of frame can be determined using RTCEncodedVideoFrame.type.
frameIdA positive integer value indicating the id of this frame.
heightA positive integer indicating the height of the frame. The maximum value is 65535.
mimeTypeA string containing the MIME type of the codec used, such as "video/VP8".
payloadTypeA positive integer value in the range from 0 to 127 that describes the format of the RTP payload. The mappings of values to formats is defined in RFC3550.
receiveTimeA DOMHighResTimeStamp indicating the timestamp of the last received packet of an incoming frame (from an RTCRtpReceiver) used to produce this media frame, relative to Performance.timeOrigin.
rtpTimestampA positive integer that reflects the sampling instant of the first octet in the RTP data packet (see RFC 3550).
spatialIndexA positive integer indicating the spatial index of the frame. Some codecs allow generation of layers of frames with different layers of resolutions. Frames in higher layers can be selectively dropped in order to reduce bit rate when needed, while maintaining acceptable video quality.
synchronizationSourceA positive integer value indicating synchronization source ("ssrc") of the stream of RTP packets that are described by this encoded video frame. A source might be something like a camera or microphone, or some kind of mixer app that combines multiple sources. All packets from the same source share the same time source and sequence space, and so can be ordered relative to each other. Note two frames with the same value refer to the same source (for more information see RTCInboundRtpStreamStats.ssrc).
temporalIndexA positive integer indicating the temporal index of the frame. Some codecs group frames in layers, based on whether dropping the a frame will prevent others from being decoded. Frames in higher layers can be selectively dropped in order to reduce bit rate when needed, while maintaining acceptable video quality.
widthA positive integer indicating the width of the frame. The maximum value is 65535.
This example WebRTC encoded transform implementation shows how you might get the frame metadata in a transform() function and log it.
The resulting object from a local webcam might look like the one shown below. Note that there are no contributing sources because there is just one source.
| WebRTC Encoded Transform # dom-rtcencodedvideoframe-getmetadata |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Oct 23, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.