Results 121 - 140 of 167

OfflineAudioCompletionEvent

The Web Audio API OfflineAudioCompletionEvent interface represents events that occur when the processing of an OfflineAudioContext is terminated. The complete event implements this interface.
API Interface OfflineAudioCompletionEvent Reference Référence Web Audio API

OfflineAudioContext.resume()

The resume() method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended. The promise resolves immediately because the OfflineAudioContext does not require the audio hardware. If the context is not currently suspended or the rendering has not started, the promise is rejected with InvalidStateError.
API Method NeedsExample OfflineAudioContext Reference resume Web Audio API

OfflineAudioContext.startRendering()

The startRendering() method of the OfflineAudioContext Interface starts rendering the audio graph, taking into account the current connections and the current scheduled changes.
API Method OfflineAudioContext Reference startRendering Web Audio API

OfflineAudioContext.startRendering (promise)

The promise-based startRendering() method of the OfflineAudioContext Interface starts rendering the audio graph, taking into account the current connections and the current scheduled changes.
API Audio Method OfflineAudioContext Promise Reference startRendering Web Audio API

suspend

The suspend() method of the OfflineAudioContext interface schedules a suspension of the time progression in the audio context at the specified time and returns a promise. This is generally useful at the time of manipulating the audio graph synchronously on OfflineAudioContext.
API Method NeedsExample OfflineAudioContext Reference suspend Web Audio API

OscillatorNode.onended

The onended property of the OscillatorNode interface is used to set the event handler for the ended event, which fires when the tone has stopped playing.
API onended OscillatorNode Property Reference Web Audio API

OscillatorNode.setPeriodicWave()

The setPeriodicWave() method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when type = "custom" is used.
API Method OscillatorNode Reference setPeriodicWave Web Audio API

OscillatorNode.start()

The following example shows basic usage of an AudioContext to create an oscillator node. For an applied example, check out our Violent Theremin demo (see app.js for relevant code).
API Method OscillatorNode Reference start Web Audio API

OscillatorNode.stop()

The following example shows basic usage of an AudioContext to create an oscillator node. For an applied example, check out our Violent Theremin demo (see app.js for relevant code).
API Method OscillatorNode Reference stop Web Audio API

OscillatorNode.type

A DOMString specifying the shape of oscillator wave. The different available values are:
API OscillatorNode Property Reference Type Web Audio API

PannerNode.orientationY

An AudioParam whose value is the Y component of the direction the audio source is facing, in 3D Cartesian coordinate space.
API orientationY PannerNode Property Reference Web Audio API