AudioContext
The AudioContext
interface represents an audio-processing graph built from audio modules linked together, each represented by an AudioNode
.
Documentation AudioContext by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Instance Members
Suspends the progression of time in the audio context, temporarily halting audio hardware access and reducing CPU/battery usage in the process.
Closes the audio context, releasing any system audio resources that it uses.
Creates a MediaElementAudioSourceNode
associated with an HTMLMediaElement
. This can be used to play and manipulate audio from video
or audio
elements.
Creates a MediaStreamAudioSourceNode
associated with a MediaStream
representing an audio stream which may come from the local computer microphone or other sources.
Creates a MediaStreamAudioDestinationNode
associated with a MediaStream
representing an audio stream which may be stored in a local file or sent to another computer.