MediaConfiguration - Web APIs 编辑

The MediaConfiguration MediaCapabilities dictionary of the Media Capabilities API describes how media and audio files must be configured, or defined, to be passed as a parameter of the MediaCapabilities.encodingInfo() and MediaCapabilities.encodingInfo() methods.

Properties

A valid configuration includes a valid encoding configuration type or decoding configuration type and a valid audio configuration or video configuration. If you plan on querying encoding information, set the media type to record or transmission.

For decoding, set the type to file or media-source.

If the media is an audio file, the audio configuration must include a valid audio MIME type as contentType, the number of channels, the bitrate, and the sample rate. Video configurations mush include a valid video MIME type as contentType, the bitrate, and framerate, along with the width and the height of the video file. All of these must be present, as in the examples below, or a TypeError will occur.

A valid media decoding configuration, to be submitted as the parameter for mediaCapabilities.decodingInfo() method, has it's `type` set as:

  • file: For plain playback file.
  • media-source: For media source files.

A valid media encoding configuration, to be submitted as the parameter for mediaCapabilities.encodingInfo() method, has it's `type` set as:

  • record: For recording media.
  • transmission: For media to be electronically transmitted.

A valid audio configuration includes:

  • contentType: Valid audio MIME type.
  • channels:  Number of channels used by the audio track.
  • bitrate: Number of bits used to encode one second of the audio file.
  • samplerate: Number of audio samples making up one second of the audio file.

A valid video configuration includes:

  • contentType: Valid video MIME type.
  • width: Width of the video.
  • height: Height of the video.
  • bitrate: Number of bits used to encode one second of the video file.
  • framerate: Number of frames making up one second of video playback.

Example

//Create a video configuration to be tested
const videoDecoderConfig = {
  type : 'file', // 'record', 'transmission', or 'media-source'
  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.
  }
};

const audioEncoderConfig = {
  type : 'file', // 'record', 'transmission', or 'media-source'
  audio : {
    contentType : "audio/ogg", // valid content type
    channels : 2,     // audio channels used by the track
    bitrate : 132700, // number of bits used to encode 1s of audio
    samplerate : 5200 // number of audio samples making up that 1s.
  }
};

Specifications

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

See also

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

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

发布评论

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

词条统计

浏览:60 次

字数:6118

最后编辑:8年前

编辑次数:0 次

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