AudioBufferSourceNode.AudioBufferSourceNode()
AudioBufferSourceNode()
构造器创建一个新的 AudioBufferSourceNode
实例。
Syntax
var audioBufferSourceNode = new AudioBufferSourceNode(context, options)
Parameters
从 AudioNodeOptions
字典中继承变量.
- 内容
-
指向
AudioContext
. - 选项 可选
-
如下:
buffer
: An instance ofAudioBuffer
to be played.detune
: A value in cents to modulate the speed of audio stream rendering. Its nominal range is (-∞ to +∞). The default is0
.loop
: A boolean indicating whether the audio should play in a loop. The default isfalse
. If the loop is dynamically modified during playback, the new value will take effect on the next processing block of audio.loopEnd
: An optional value, in seconds, where looping should end if the loop attribute istrue
. The default is0
. Its value is exclusive to the content of the loop. The sample frames, comprising the loop, run from the valuesloopStart
toloopEnd
-(1/sampleRate
). It's sensible to set this to a value between 0 and the duration of the buffer. IfloopEnd
is less than 0, looping will end at 0. IfloopEnd
is greater than the duration of the buffer, looping will end at the end of the buffer. This attribute is converted to an exact sample frame offset within the buffer, by multiplying by the buffer's sample rate and rounding to the nearest integer value. Thus, its behavior is independent of the value of theplaybackRate
parameter.loopStart
: An optional value in seconds, where looping should end if the loop attribute istrue
. The default is0
. It's sensible to set this to a value between 0 and the duration of the buffer. IfloopStart
is less than 0, looping will begin at 0. IfloopStart
is greater than the duration of the buffer, looping will begin at the end of the buffer. This attribute is converted to an exact sample frame offset within the buffer, by multiplying by the buffer's sample rate and rounding to the nearest integer value. Thus, its behavior is independent of the value of theplaybackRate
parameter.playbackRate
: The speed at which to render the audio stream. Its default value is1
. This parameter is k-rate. This is a compound parameter with detune. Its nominal range is (-∞ to +∞).
Return value
A new AudioBufferSourceNode
object instance.
Specifications
Specification |
---|
Web Audio API # dom-audiobuffersourcenode-constructor-audiobuffersourcenode |
Browser Compatibility
BCD tables only load in the browser