The AudioScheduledSourceNode
interface—part of the Web Audio API—is a parent interface for several types of audio source node interfaces which share the ability to be started and stopped, optionally at specified times. Specifically, this interface defines the start()
and stop()
methods, as well as the ended
event.
Unless stated otherwise, nodes based upon AudioScheduledSourceNode
output silence when not playing (that is, before start()
is called and after stop()
is called). Silence is represented, as always, by a stream of samples with the value zero (0).
EventTarget
AudioNode
AudioScheduledSourceNode
Instance properties
Inherits properties from its parent interface, AudioNode
.
Instance methods
Inherits methods from its parent interface, AudioNode
, and adds the following methods:
start()
Schedules the node to begin playing the constant sound at the specified time. If no time is specified, the node begins playing immediately.
stop()
Schedules the node to stop playing at the specified time. If no time is specified, the node stops playing at once.
Events
Listen to these events using addEventListener()
or by assigning an event listener to the oneventname
property of this interface:
ended
Fired when the source node has stopped playing, either because it's reached a predetermined stop time, the full duration of the audio has been performed, or because the entire buffer has been played.
Specifications
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
AudioScheduledSourceNode
57
14–57 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
79
12–79 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
53
25–53 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
No
44
15–44 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
14
6–14 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
57
≤37–57 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
57
18–57 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
53
25–53 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
43
14–43 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
14
6–14 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
7.0
1.0–7.0 The AudioScheduledSourceNode
interface itself is not present, but some of its members are available on the AudioBufferSourceNode
, ConstantSourceNode
and OscillatorNode
interfaces.
ended_event
30
12
25
No
17
7
≤37
30
25
18
7
2.0
start
24
12
25
No
15
7
4.4
25
25
14
7
1.5
stop
24
12
25
No
15
7
4.4
25
25
14
7
1.5
See also