Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/api/audiodecoder/state/index.md
6516 views
---
title: AudioDecoder.state slug: Web/API/AudioDecoder/state page-type: web-api-instance-property status: - experimental browser-compat: api.AudioDecoder.state
---

{{securecontext_header}}{{APIRef("WebCodecs API")}}{{SeeCompatTable}}

The state read-only property of the {{domxref("AudioDecoder")}} interface returns the current state of the underlying codec.

Value

A string containing one of the following values:

  • "unconfigured"

    • : The codec is not configured for decoding.

  • "configured"

    • : The codec has a valid configuration and is ready.

  • "closed"

    • : The codec is no longer usable and system resources have been released.

Examples

The following example prints the state of the AudioDecoder to the console.

console.log(AudioDecoder.state);

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}