Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. RTCEncodedVideoFrame
  4. getMetadata()

RTCEncodedVideoFrame: getMetadata() method

Baseline 2023
Newly available

Since ⁨August 2023⁩, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

Note: This feature is available inDedicated Web Workers.

ThegetMetadata() method of theRTCEncodedVideoFrame 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.

Syntax

js
getMetadata()

Parameters

None.

Return value

An object with the following properties:

contributingSources

AnArray 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.ThesynchronizationSource would include the ssrc of the application, whilecontributingSources would include the ssrc values of all the individual video and audio sources.

dependencies

AnArray 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 usingRTCEncodedVideoFrame.type.

frameId

A positive integer value indicating the id of this frame.

height

A positive integer indicating the height of the frame.The maximum value is 65535.

mimeType

A string containing theMIME type of the codec used, such as "video/VP8".

payloadType

A 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.

receiveTime

ADOMHighResTimeStamp indicating the timestamp of the last received packet of an incoming frame (from anRTCRtpReceiver) used to produce this media frame, relative toPerformance.timeOrigin.

rtpTimestamp

A positive integer that reflects the sampling instant of the first octet in the RTP data packet (seeRFC 3550).

spatialIndex

A 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.

synchronizationSource

A 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 seeRTCInboundRtpStreamStats.ssrc).

temporalIndex

A 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.

width

A positive integer indicating the width of the frame.The maximum value is 65535.

Examples

This exampleWebRTC encoded transform implementation shows how you might get the frame metadata in atransform() function and log it.

js
addEventListener("rtctransform", (event) => {  const transform = new TransformStream({    async transform(encodedFrame, controller) {      // Get the metadata and log      const frameMetaData = encodedFrame.getMetadata();      console.log(frameMetaData);      // Enqueue the frame without modifying      controller.enqueue(encodedFrame);    },  });  event.transformer.readable    .pipeThrough(transform)    .pipeTo(event.transformer.writable);});

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.

json
{  "contributingSources": [],  "mimeType": "video/VP8",  "payloadType": 96,  "rtpTimestamp": 2503280194,  "synchronizationSource": 1736709460,  "dependencies": [],  "frameId": 1,  "height": 240,  "spatialIndex": 0,  "temporalIndex": 0,  "width": 320}

Specifications

Specification
WebRTC Encoded Transform
# dom-rtcencodedvideoframe-getmetadata

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp