AudioConfiguration - Web APIs 编辑
The AudioConfiguration
dictionary of the Media Capabilities API defines the audio file being tested when calling MediaCapabilities.encodingInfo()
or MediaCapabilities.decodingInfo()
to query whether a specific audio configuration is supported, smooth, and/or power efficient.
Properties
The AudioConfiguration
dictionary is made up of four audio properties, including:
- contentType: A valid audio MIME type, For information on possible values and what they mean, see the web audio codec guide.
- channels: the number of channels used by the audio track.
- bitrate: The number of bits used to encode one second of the audio file.
- samplerate: The number of audio samples making up one second of the audio file.
Examples
//Create media configuration to be tested
const mediaConfig = {
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.
}
};
// check support and performance
navigator.mediaCapabilities.decodingInfo(mediaConfig).then(result => {
console.log('This configuration is ' +
(result.supported ? '' : 'not ') + 'supported, ' +
(result.smooth ? '' : 'not ') + 'smooth, and ' +
(result.powerEfficient ? '' : 'not ') + 'power efficient.'
});
Specifications
Specification | Status | Comment |
---|---|---|
Media Capabilities The definition of 'AudioConfiguration' in that specification. | Draft | Initial definition |
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论