AudioScheduledSourceNode.stop() - Web APIs 编辑
The stop()
method on AudioScheduledSourceNode
schedules a sound to cease playback at the specified time. If no time is specified, then the sound stops playing immediately.
Each time you call stop()
on the same node, the specified time replaces any previously-scheduled stop time that hasn't occurred yet. If the node has already stopped, this method has no effect.
Note: If a scheduled stop time occurs before the node's scheduled start time, the node never starts to play.
Syntax
AudioScheduledSourceNode.stop([when]);
Parameters
when
Optional- The time, in seconds, at which the sound should stop playing. This value is specified in the same time coordinate system as the
AudioContext
is using for itscurrentTime
attribute. Omitting this parameter, specifying a value of 0, or passing a negative value causes the sound to stop playback immediately.
Return value
Exceptions
InvalidStateNode
- The node has not been started by calling
start()
. RangeError
- The value specified for
when
is negative.
Example
This example demonstrates starting an oscillator node, scheduled to begin playing at once and to stop playing in one second. The stop time is determined by taking the audio context's current time from AudioContext.currentTime
and adding 1 second.
context = new AudioContext();
osc = context.createOscillator();
osc.connect(context.destination);
/* Let's play a sine wave for one second. */
osc.start();
osc.stop(context.currentTime + 1);
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'stop()' in that specification. | Working Draft |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论