AudioBufferSourceNode.buffer - Web API 接口参考 编辑
AudioBufferSourceNode
接口的 buffer
属性提供了重复播放音频的能力,该音频使用 AudioBuffer
作为声音文件的来源。
如果 buffer
属性的值为 null
, 节点会自动生成一个单声道的无声文件(所有采样均为0)。
语法
AudioBufferSourceNode.buffer = soundBuffer;
返回值
AudioBuffer
,包含了节点将要播放的声音数据。
示例
完整的示例请查看 this code running live,或 view the source。
var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate);
button.onclick = function() {
// Fill the buffer with white noise;
//just random values between -1.0 and 1.0
for (var channel = 0; channel < channels; channel++) {
// This gives us the actual ArrayBuffer that contains the data
var nowBuffering = myArrayBuffer.getChannelData(channel);
for (var i = 0; i < frameCount; i++) {
// Math.random() is in [0; 1.0]
// audio needs to be in [-1.0; 1.0]
nowBuffering[i] = Math.random() * 2 - 1;
}
}
// Get an AudioBufferSourceNode.
// This is the AudioNode to use when we want to play an AudioBuffer
var source = audioCtx.createBufferSource();
// set the buffer in the AudioBufferSourceNode
source.buffer = myArrayBuffer;
规范
Specification | Status | Comment |
---|---|---|
Web Audio API buffer | Working Draft | Initial definition |
浏览器兼容性
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.相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论