AudioWorkletGlobalScope:currentTime 属性

Baseline 已广泛支持

此特性已得到良好支持,可在多种设备和浏览器版本上使用。自 2021 年 4 月起,所有浏览器均已支持此特性。

AudioWorkletGlobalScope 接口中只读的 currentTime 属性返回一个双精度浮点数,表示正在处理的音频块不断增加的上下文时间。它等于工作节点所属的 BaseAudioContext 的 currentTime 属性。

一个表示时间的浮点数。

示例

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-currenttime

浏览器兼容性

另见