The AudioBufferSourceNode
interface represents an audio source consisting of in-memory audio data, stored in an AudioBuffer
. It is an AudioNode
that acts as an audio source.
Documentation AudioBufferSourceNode by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Variables
Is an AudioBuffer
that defines the audio asset to be played, or when set to the value null
, defines a single channel of silence.
read onlydetune:AudioParam
Is a AudioParam
representing detuning of oscillation in cents. Its default value is 0
.
Is a Boolean attribute indicating if the audio asset must be replayed when the end of the AudioBuffer
is reached. Its default value is false
.
Is a double value indicating, in seconds, where in the AudioBuffer
the replay of the play must stop (and eventually loop again). Its default value is 0
.
Is a double value indicating, in seconds, where in the AudioBuffer
the restart of the play must happen. Its default value is 0
.
read onlyplaybackRate:AudioParam
Is an a-rate AudioParam
that defines the speed factor at which the audio asset will be played. Since no pitch correction is applied on the output, this can be used to change the pitch of the sample.