Tone.BufferSource

↳ EXTENDS Tone.AudioNode

Wrapper around the native BufferSourceNode.

CONSTRUCTOR

new Tone.BufferSource (
buffer
,
onload
)
buffer

The buffer to play

type: AudioBuffer or Tone.Buffer
onload

The callback to invoke when the buffer is done playing.

type: function

DEFAULTS

{
onended : Tone.noOp ,
onload : Tone.noOp ,
loop : false ,
loopStart : 0 ,
loopEnd : 0 ,
fadeIn : 0 ,
fadeOut : 0 ,
curve : linear ,
playbackRate : 1
}

Members

.state

Tone.State READONLY #

Returns the playback state of the source, either “started” or “stopped”.

</>

.buffer

Tone.Buffer #

The audio buffer belonging to the player.

</>

.curve

String #

The curve applied to the fades, either “linear” or “exponential”

</>

.fadeIn

Time #

The fadeIn time of the amplitude envelope.

</>

.fadeOut

Time #

The fadeOut time of the amplitude envelope.

</>

.loop

Boolean #

If the buffer should loop once it’s over.

</>

.loopEnd

Time #

If loop is true, the loop will end at this position.

</>

.loopStart

Time #

If loop is true, the loop will start at this position.

</>

.onended

function #

The callback to invoke after the buffer source is done playing.

</>

.playbackRate

Positive #

The playbackRate of the buffer

</>
inherited from Tone.AudioNode

.context

Tone.Context READONLY #

Get the audio context belonging to this instance.

</>

Methods

.dispose ( )

#
↪ returns Tone.BufferSource

this

Clean up.

</>

.start ( )

#
startTime

When the player should start.

type: Time
default: now
offset

The offset from the beginning of the sample to start at.

type: Time
default: 0
duration

How long the sample should play. If no duration is given, it will default to the full length of the sample (minus any offset)

type: Time
optional
gain

The gain to play the buffer back at.

type: Gain
default: 1
fadeInTime

The optional fadeIn ramp time.

type: Time
optional
↪ returns Tone.BufferSource

this

Start the buffer

</>

.stop ( )

#
time

The time the buffer should stop.

type: Time
optional
fadeOutTime

How long the gain should fade out for

type: Time
optional
↪ returns Tone.BufferSource

this

Stop the buffer. Optionally add a ramp time to fade the buffer out.

</>
inherited from Tone.AudioNode

.connect ( )

#
outputNum

optionally which output to connect from

type: number
default: 0
inputNum

optionally which input to connect to

type: number
default: 0
↪ returns Tone.AudioNode

this

connect the output of a ToneNode to an AudioParam, AudioNode, or ToneNode

</>
inherited from Tone.AudioNode

.disconnect ( )

#
output

Either the output index to disconnect if the output is an array, or the node to disconnect from.

↪ returns Tone.AudioNode

this

disconnect the output

</>
inherited from Tone.AudioNode

.toMaster ( )

#
↪ returns Tone.AudioNode

this

Connect ‘this’ to the master output. Shorthand for this.connect(Tone.Master)

EXAMPLE

//connect an oscillator to the master output
var osc = new Tone.Oscillator().toMaster();
</>
docs generated Sep 15 2019