Articles tagged: Web Audio API
Found 216 documents
- Web/API/BaseAudioContext/createPeriodicWave The createPeriodicWave() method of the BaseAudioContext Interface is used to create a ...
- Web/API/BaseAudioContext/createScriptProcessor A ScriptProcessorNode.
- Web/API/BaseAudioContext/createStereoPanner A StereoPannerNode.
- Web/API/BaseAudioContext/createWaveShaper A WaveShaperNode.
- Web/API/BaseAudioContext/currentTime The currentTime read-only property of the BaseAudioContext interface returns a double ...
- Web/API/BaseAudioContext/decodeAudioData This is the preferred method of creating an audio source for Web Audio API from an audio track.
- Web/API/BaseAudioContext/destination An AudioDestinationNode.
- Web/API/BaseAudioContext/listener An AudioListener object.
- Web/API/BaseAudioContext/onstatechange The following snippet is taken from our AudioContext states demo (see it running live.) The ...
- Web/API/BaseAudioContext/resume The resume() method of the BaseAudioContext Interface resumes the progression of time in an ...
- Web/API/BaseAudioContext/sampleRate A floating point number.
- Web/API/BaseAudioContext/state A DOMString. Possible values are:
- Web/API/BiquadFilterNode The BiquadFilterNode interface represents a simple low-order filter, and is created using the ...
- Web/API/BiquadFilterNode/BiquadFilterNode The BiquadFilterNode() constructor of the Web Audio API creates a new BiquadFilterNode object, ...
- Web/API/BiquadFilterNode/detune An a-rate AudioParam.
- Web/API/BiquadFilterNode/frequency An AudioParam.
- Web/API/BiquadFilterNode/gain An AudioParam.
- Web/API/BiquadFilterNode/getFrequencyResponse undefined
- Web/API/BiquadFilterNode/Q An AudioParam.
- Web/API/BiquadFilterNode/type A string (enum) representing a BiquadFilterType.
- Web/API/ChannelMergerNode If ChannelMergerNode has one single output, but as many inputs as there are channels to merge; ...
- Web/API/ChannelMergerNode/ChannelMergerNode The ChannelMergerNode() constructor creates a new ChannelMergerNode object instance.
- Web/API/ChannelSplitterNode If your ChannelSplitterNode always has one single input, the amount of outputs is defined by a ...
- Web/API/ChannelSplitterNode/ChannelSplitterNode The ChannelSplitterNode() constructor of the Web Audio API creates a new ChannelSplitterNode ...
- Web/API/ConstantSourceNode The ConstantSourceNode interface—part of the Web Audio API—represents an audio source (based ...
- Web/API/ConstantSourceNode/ConstantSourceNode The ConstantSourceNode() constructor creates a new ConstantSourceNode object instance, ...
- Web/API/ConstantSourceNode/offset The read-only offset property of the ConstantSourceNode interface returns a AudioParam object ...
- Web/API/ConvolverNode The ConvolverNode interface is an AudioNode that performs a Linear Convolution on a given ...
- Web/API/ConvolverNode/buffer An AudioBuffer.
- Web/API/ConvolverNode/ConvolverNode The ConvolverNode() constructor of the Web Audio API creates a new ConvolverNode object instance.
- Web/API/ConvolverNode/normalize A boolean.
- Web/API/DelayNode The DelayNode interface represents a delay-line ; an AudioNode audio-processing module that ...
- Web/API/DelayNode/DelayNode The DelayNode() constructor of the Web Audio API creates a new DelayNode object with a ...
- Web/API/DelayNode/delayTime An AudioParam.
- Web/API/DynamicsCompressorNode Inherits properties from its parent, AudioNode.
- Web/API/DynamicsCompressorNode/attack An AudioParam.
- Web/API/DynamicsCompressorNode/DynamicsCompressorNode The DynamicsCompressorNode() constructor creates a new DynamicsCompressorNode object which ...
- Web/API/DynamicsCompressorNode/knee An AudioParam.
- Web/API/DynamicsCompressorNode/ratio An AudioParam.
- Web/API/DynamicsCompressorNode/reduction The reduction read-only property of the DynamicsCompressorNode interface is a float representing ...
- Web/API/DynamicsCompressorNode/release An AudioParam.
- Web/API/DynamicsCompressorNode/threshold An AudioParam.
- Web/API/GainNode The GainNode interface represents a change in volume. It is an AudioNode audio-processing module ...
- Web/API/GainNode/gain An AudioParam.
- Web/API/GainNode/GainNode The GainNode() constructor of the Web Audio API creates a new GainNode object which an AudioNode ...
- Web/API/IIRFilterNode The IIRFilterNode interface of the Web Audio API is a AudioNode processor which implements a ...
- Web/API/IIRFilterNode/getFrequencyResponse undefined
- Web/API/IIRFilterNode/IIRFilterNode The IIRFilterNode() constructor of the Web Audio API creates a new IIRFilterNode object which an ...
- Web/API/MediaElementAudioSourceNode A MediaElementSourceNode has no inputs and exactly one output, and is created using the ...
- Web/API/MediaElementAudioSourceNode/MediaElementAudioSourceNode The MediaElementAudioSourceNode() constructor creates a new MediaElementAudioSourceNode object ...
- Web/API/MediaStreamAudioDestinationNode Inherits properties from its parent, AudioNode.
- Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode The MediaStreamAudioDestinationNode() constructor of the Web Audio API creates a new ...
- Web/API/MediaStreamAudioDestinationNode/stream A MediaStream.
- Web/API/MediaStreamAudioSourceNode A MediaStreamAudioSourceNode has no inputs and exactly one output, and is created using the ...
- Web/API/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode The MediaStreamAudioSourceNode() constructor of the Web Audio API creates a new ...
- Web/API/OfflineAudioCompletionEvent The Web Audio API OfflineAudioCompletionEvent interface represents events that occur when the ...
- Web/API/OfflineAudioCompletionEvent/OfflineAudioCompletionEvent The OfflineAudioCompletionEvent() constructor of the Web Audio API creates a new ...
- Web/API/OfflineAudioCompletionEvent/renderedBuffer The renderedBuffer read-only property of the OfflineAudioCompletionEvent interface is an ...
- Web/API/OfflineAudioContext The OfflineAudioContext interface is an AudioContext interface representing an audio-processing ...
- Web/API/OfflineAudioContext/length The length property of the OfflineAudioContext interface returns an integer representing the ...
- Web/API/OfflineAudioContext/OfflineAudioContext The OfflineAudioContext() constructor—part of the Web Audio API —creates and returns a new ...
- Web/API/OfflineAudioContext/oncomplete In this simple example, we declare both an AudioContext and an OfflineAudioContext object. We ...
- Web/API/OfflineAudioContext/resume The resume() method of the OfflineAudioContext interface resumes the progression of time in an ...
- Web/API/OfflineAudioContext/startRendering The startRendering() method of the OfflineAudioContext Interface starts rendering the audio ...
- Web/API/OfflineAudioContext/startRendering(promise) The promise-based startRendering() method of the OfflineAudioContext Interface starts rendering ...
- Web/API/OfflineAudioContext/suspend The suspend() method of the OfflineAudioContext interface schedules a suspension of the time ...
- Web/API/OscillatorNode The OscillatorNode interface represents a periodic waveform, such as a sine wave. It is an ...
- Web/API/OscillatorNode/detune An a-rate AudioParam.
- Web/API/OscillatorNode/frequency An a-rate AudioParam.
- Web/API/OscillatorNode/onended The onended property of the OscillatorNode interface is used to set the event handler for the ...
- Web/API/OscillatorNode/OscillatorNode The OscillatorNode() constructor of the Web Audio API creates a new OscillatorNode object which ...
- Web/API/OscillatorNode/setPeriodicWave The setPeriodicWave() method of the OscillatorNode interface is used to point to a PeriodicWave ...
- Web/API/OscillatorNode/start The following example shows basic usage of an AudioContext to create an oscillator node. For an ...
- Web/API/OscillatorNode/stop The following example shows basic usage of an AudioContext to create an oscillator node. For an ...
- Web/API/OscillatorNode/type A DOMString specifying the shape of oscillator wave. The different available values are:
- Web/API/PannerNode A PannerNode always has exactly one input and one output: the input can be mono or stereo but ...
- Web/API/PannerNode/coneInnerAngle A double.
- Web/API/PannerNode/coneOuterAngle A double.
- Web/API/PannerNode/coneOuterGain The coneOuterGain property of the PannerNode interface is a double value, describing the amount ...
- Web/API/PannerNode/distanceModel A enum — see DistanceModelType.
- Web/API/PannerNode/maxDistance A double.
- Web/API/PannerNode/orientationX An AudioParam whose value is the X component of the direction in which the audio source is ...
- Web/API/PannerNode/orientationY An AudioParam whose value is the Y component of the direction the audio source is facing, in 3D ...
- Web/API/PannerNode/PannerNode The PannerNode() constructor of the Web Audio API creates a new PannerNode object instance.
- Web/API/PannerNode/panningModel A enum — see PanningModelType.
- Web/API/PannerNode/positionX An AudioParam whose value is the X coordinate of the audio source's position, in 3D Cartesian ...
- Web/API/PannerNode/positionY An AudioParam whose value is the Y coordinate of the audio source's position, in 3D Cartesian ...
- Web/API/PannerNode/positionZ An AudioParam whose value is the Z coordinate of the audio source's position, in 3D Cartesian ...
- Web/API/PannerNode/refDistance A double.
- Web/API/PannerNode/rolloffFactor A double.
- Web/API/PannerNode/setOrientation Void.
- Web/API/PannerNode/setPosition Void.
- Web/API/PannerNode/setVelocity The setVelocity() method of the PannerNode Interface defines the velocity vector of the audio ...
- Web/API/PeriodicWave PeriodicWave has no inputs or outputs; it is used to define custom oscillators when calling ...
- Web/API/PeriodicWave/PeriodicWave The PeriodicWave() constructor of the Web Audio API creates a new PeriodicWave object instance.
- Web/API/ScriptProcessorNode The size of the input and output buffer are defined at the creation time, when the ...
- Web/API/ScriptProcessorNode/bufferSize The following example shows basic usage of a ScriptProcessorNode to take a track loaded via ...
- Web/API/ScriptProcessorNode/onaudioprocess The following example shows basic usage of a ScriptProcessorNode to take a track loaded via ...
- Web/API/StereoPannerNode The pan property takes a unitless value between -1 (full left pan) and 1 (full right pan). This ...
- Web/API/StereoPannerNode/pan An a-rate AudioParam containing the panning to apply.