The VideoConfiguration
dictionary of the Media Capabilities API is used to define the video file being tested when calling the MediaCapabilities
methods encodingInfo()
and decodingInfo()
to determine whether or not the described video configuration is supported, and how smoothly and how smooth and power-efficient it can be handled.
The VideoConfiguration
dictionary is made up of five video properties, including:
-
contentType: A valid video MIME type. See our web video codec guide for types which may be supported.
-
width: The width of the video.
-
height: The height of the video.
-
bitrate: The number of bits used to encode one second of the video file.
-
framerate: The number of frames making up one second of video playback.
const mediaConfig = {
type : 'file',
video : {
contentType : "video/webm;codecs=vp8",
width : 800,
height : 600,
bitrate : 10000,
framerate : 30
}
};