Definition
WebCodecs defines VideoFrameMetadata
dictionary VideoFrameMetadata {
// Possible members are recorded in the VideoFrame Metadata Registry.
};
This dictionary is extended in the following specifications:
- Media Capture and Streams Extensions
partial dictionary VideoFrameMetadata { sequence<Segment> segments; }; partial dictionary VideoFrameMetadata { BackgroundBlur backgroundBlur; }; partial dictionary VideoFrameMetadata { ImageBitmap backgroundSegmentationMask; };
Consolidated IDL (across partials)
dictionary VideoFrameMetadata {
sequence<Segment> segments;
BackgroundBlur backgroundBlur;
ImageBitmap backgroundSegmentationMask;
// Possible members are recorded in the VideoFrame Metadata Registry.
};Referring IDL interfaces/dictionaries
Referring specifications
- Media Capture and Streams Extensions refers to
VideoFrameMetadata