web api static method
AudioDecoder: isConfigSupported() static method
Secure contextAvailable in workers
The isConfigSupported() static method of the AudioDecoder interface checks if the given config is supported (that is, if AudioDecoder objects can be successfully configured with the given config).
Syntax
AudioDecoder.isConfigSupported(config)
Parameters
config- : The dictionary object accepted by
configure
- : The dictionary object accepted by
Return value
A Promise that resolves with an object containing the following members:
supported- : A boolean value which is
trueif the given config is supported by the decoder.
- : A boolean value which is
config- : A copy of the given config with all the fields recognized by the decoder.
Exceptions
TypeError- : Thrown if the provided
configis invalid; that is, if doesn’t have required values (such as an emptycodecfield) or has invalid values (such as a negativesampleRate).
- : Thrown if the provided
Examples
The following example tests if the browser supports several audio codecs.
const codecs = ["mp4a.40.2", "mp3", "alaw", "ulaw"];
const configs = [];
for (const codec of codecs) {
configs.push({
codec,
sampleRate: 48000,
numberOfChannels: 1,
not_supported_field: 123,
});
}
for (const config of configs) {
const support = await AudioDecoder.isConfigSupported(config);
console.log(
`AudioDecoder's config ${JSON.stringify(support.config)} support: ${
support.supported
}`,
);
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.