Expand description
The BaseAudioContext
interface and the AudioContext
and OfflineAudioContext
types
Structs§
- Audio
Context - This interface represents an audio graph whose
AudioDestinationNode
is routed to a real-time output device that produces a signal directed at the user. - Audio
Context Options - Specify the playback configuration for the
AudioContext
constructor. - Audio
Context Registration - Handle of the
AudioNode
to its associatedBaseAudioContext
. - Audio
Param Id - Unique identifier for audio params.
- Offline
Audio Context - The
OfflineAudioContext
doesn’t render the audio to the device hardware; instead, it generates it, as fast as it can, and outputs the result to anAudioBuffer
.
Enums§
- Audio
Context Latency Category - Identify the type of playback, which affects tradeoffs between audio output latency and power consumption
- Audio
Context Render Size Category - This allows users to ask for a particular render quantum size.
- Audio
Context State - Describes the current state of the
AudioContext
Traits§
- Base
Audio Context - The interface representing an audio-processing graph built from audio modules linked together,
each represented by an
AudioNode
.