MediaCapabilitiesInfo - Web APIs 编辑
The MediaCapabilitiesInfo
interface of the Media Capabilities API is made available when the promise returned by the MediaCapabilities.encodingInfo()
or MediaCapabilities.decodingInfo()
methods of the MediaCapabilities
interface fulfills, providing information as to whether the media type is supported, and whether encoding or decoding such media would be smooth and power efficient.
Properties
The MediaCapabilitiesInfo
interface contains three Boolean attribues:
supported
: Given the properties defined in theMediaConfiguration
, can the specified piece of media content be encoded (ifMediaEncodingConfiguration
is set) or decode (ifMediaDecodingConfiguration
is set) at all? If yes,supported
is true. Otherwise, it is false.smooth
: Given the properties defined in theMediaConfiguration
, will the playback of the specified piece of media be high quality? Will it be smooth? Ifsupported
istrue
, and playback will be smooth,smooth
is true, Otherwise, is it false.powerEfficient
: Given the properties defined in theMediaConfiguration
, will the playback of the specified piece of media be power efficient? Ifsupported
istrue
, and playback will be power efficient,powerEfficient
is true, Otherwise, is it false.
Browsers will report a supported media configuration as smooth
and powerEfficient
until stats on this device have been recorded. All supported audio codecs are reported to be power efficient.
Example
// MediaConfiguration to be tested
const mediaConfig = {
type : 'file',
audio : {
contentType : "audio/ogg",
channels : 2,
bitrate : 132700,
samplerate : 5200
},
};
// check support and performance
navigator.mediaCapabilities.decodingInfo(mediaConfig).then(result => { // result contains the media capabilities information
console.log('This configuration is ' +
(result.supported ? '' : 'not ') + 'supported, ' + // Can the media, as configured, be decoded by the user agent
(result.smooth ? '' : 'not ') + 'smooth, and ' + // is it smooth?
(result.powerEfficient ? '' : 'not ') + 'power efficient.') // is it power efficient?
});
Specifications
Specification | Status | Comment |
---|---|---|
Media Capabilities The definition of 'MediaCapabilitiesInfo' in that specification. | Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论