Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AudioProcessingEvent

deprecated

The Web Audio API events that occur when a ScriptProcessorNode input buffer is ready to be processed.

@deprecated

As of the August 29 2014 Web Audio API spec publication, this feature has been marked as deprecated, and is soon to be replaced by AudioWorklet.

interface AudioProcessingEvent extends Event {
readonly inputBuffer: AudioBuffer;
readonly outputBuffer: AudioBuffer;
readonly playbackTime: number;
}
var AudioProcessingEvent: {
new (type: string, eventInitDict: AudioProcessingEventInit): AudioProcessingEvent;
}
;

§Extends

§Properties

§
readonly inputBuffer: AudioBuffer
[src]
§
readonly outputBuffer: AudioBuffer
[src]
§
readonly playbackTime: number
[src]