AudioScheduledSourceNode.start()
The start()
method on AudioScheduledSourceNode
schedules a sound to begin playback at the specified time. If no time is specified, then the sound begins playing immediately.
Syntax
start() start(when)
Parameters
-
when
Optional -
The time, in seconds, at which the sound should begin to play. This value is specified in the same time coordinate system as the
AudioContext
is using for itscurrentTime
attribute. A value of 0 (or omitting thewhen
parameter entirely) causes the sound to start playback immediately.
Return value
undefined
Exceptions
InvalidStateNode
-
The node has already been started. This error occurs even if the node is no longer running because of a prior call to
stop()
. RangeError
-
The value specified for
when
is negative.
Example
This example demonstrates how to create an OscillatorNode
which is scheduled to start playing in 2 seconds and stop playing 1 second after that. The times are calculated by adding the desired number of seconds to the context's current time stamp returned by AudioContext.currentTime
.
context = new AudioContext(); osc = context.createOscillator(); osc.connect(context.destination); /* Schedule the start and stop times for the oscillator */ osc.start(context.currentTime + 2); osc.stop(context.currentTime + 3);
Specifications
Specification |
---|
Web Audio API # dom-audioscheduledsourcenode-start |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
start |
24 |
12 |
25 |
No |
15 |
7 |
≤37 |
25 |
25 |
14 |
7 |
1.5 |
See also
- Using the Web Audio API
stop()
AudioScheduledSourceNode
AudioBufferSourceNode
ConstantSourceNode
OscillatorNode
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/start