VideoConfiguration
dictionary of the
媒体能力 API
is used to define the video file being tested when calling the
MediaCapabilities
方法
encodingInfo()
and
decodingInfo()
to determine whether or not the described video configuration is supported, and how smoothly and how smoooth and power-efficient it can be handled.
VideoConfiguration
dictionary is made up of five video properties, including:
// Create media configuration to be tested
const mediaConfig = {
type : 'file', // see MediaDecodingConfiguration and MediaEncodingConfiguration
video : {
contentType : "video/webm;codecs=vp8", // valid content type
width : 800, // width of the video
height : 600, // height of the video
bitrate : 10000, // number of bits used to encode 1s of video
framerate : 30 // number of frames making up that 1s.
}
};
| 规范 | 状态 | 注释 |
|---|---|---|
|
Media Capabilities
The definition of 'VideoConfiguration' in that specification. |
草案 | 初始定义 |
No compatibility data found. Please contribute data for "api.VideoConfiguration" (depth: 1) to the MDN 兼容性数据存储库 .
MediaDecodingConfiguration
MediaEncodingConfiguration
AudioConfiguration
VideoConfiguration