AudioBufferSourceNode.start() - Web API 接口参考 编辑
AudioBufferSourceNode
接口的start()
方法用于计划对缓冲区中包含的音频数据的回放,或者立即开始回放。
语法
AudioBufferSourceNode.start([when][, offset][, duration]);
参数
when
可选- The time声音开始播放的时间,单位是秒,与
AudioContext
使用相同的时间坐标系统. 如果when
小于 (AudioContext.currentTime
, 或者是0,声音立即被播放。 默认值是0。 offset
可选- An offset, specified as the number of seconds in the same time coordinate system as the
AudioContext
, to the time within the audio buffer that playback should begin. For example, to start playback halfway through a 10-second audio clip,offset
should be 5. The default value, 0, will begin playback at the beginning of the audio buffer, and offsets past the end of the audio which will be played (based on the audio buffer'sduration
and/or theloopEnd
property) are silently clamped to the maximum value allowed. The computation of the offset into the sound is performed using the sound buffer's natural sample rate, rather than the current playback rate, so even if the sound is playing at twice its normal speed, the midway point through a 10-second audio buffer is still 5. duration
可选- 将要播放的声音的持续时间,指定单位为秒。如果这个参数没有被指定,声音播放到自然结束或者使用
stop()
方法结束。使用这个参数的功能与调用start(when, offset)
和调用stop(when+duration)
完全相同。
返回值
异常
TypeError
- A negative value was specified for one or more of the three time parameters. Please don't attempt to tamper with the laws of temporal physics.
InvalidStateError
start()
已经被调用。在一个AudioBufferSourceNode
的生命周期内只能调用一次这个函数。
例子
The most simple example just starts the audio buffer playing from the beginning — you don't need to specify any parameters in this case:
source.start();
The following more complex example will, 1 second from now, start playing 10 seconds worth of sound starting 3 seconds into the audio buffer.
source.start(audioCtx.currentTime + 1,3,10);
For a more complete example showing start()
in use, check out our AudioContext.decodeAudioData()
example, You can also run the code example live, or view the source.
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API start() | Working Draft |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论