VideoConfiguration - Web APIs 编辑

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 smoooth and power-efficient it can be handled.

Properties

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.

Examples

// 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.
     }
};

Specifications

SpecificationStatusComment
Media Capabilities
The definition of 'VideoConfiguration' in that specification.
DraftInitial definition

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:141 次

字数:3713

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文