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 Audio API # dom-audioworkletglobalscope-samplerate |
浏览器兼容性
加载中…