AudioWorkletGlobalScope: sampleRate 属性
AudioWorkletGlobalScope
接口的只读sampleRate
属性返回一个浮点数,表示关联的 BaseAudioContext
(工作线程所属的)的采样率。
值
表示关联采样率的浮点数。
示例
AudioWorkletProcessor
可以访问特定的 AudioWorkletGlobalScope
属性
js
// AudioWorkletProcessor defined in : test-processor.js
class TestProcessor extends AudioWorkletProcessor {
constructor() {
super();
// Logs the current sample-frame and time at the moment of instantiation.
// They are accessible from the AudioWorkletGlobalScope.
console.log(currentFrame);
console.log(currentTime);
}
// The process method is required - output silence,
// which the outputs are already filled with.
process(inputs, outputs, parameters) {
return true;
}
}
// Logs the sample rate, that is not going to change ever,
// because it's a read-only property of a BaseAudioContext
// and is set only during its instantiation.
console.log(sampleRate);
// You can declare any variables and use them in your processors
// for example it may be an ArrayBuffer with a wavetable.
const usefulVariable = 42;
console.log(usefulVariable);
registerProcessor("test-processor", TestProcessor);
主脚本加载处理器,创建 AudioWorkletNode
的实例,将处理器的名称传递给它,并将节点连接到音频图。我们应该在控制台中看到 console.log()
调用的输出
js
const audioContext = new AudioContext();
await audioContext.audioWorklet.addModule("test-processor.js");
const testNode = new AudioWorkletNode(audioContext, "test-processor");
testNode.connect(audioContext.destination);
规范
规范 |
---|
Web 音频 API # dom-audioworkletglobalscope-samplerate |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。