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's duration and/or the loopEnd 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)完全相同。

返回值

undefined.

异常

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

SpecificationStatusComment
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:41 次

字数:5188

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文