AudioProcessingEvent
deprecatedThe 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: {
prototype: AudioProcessingEvent;
new (type: string, eventInitDict: AudioProcessingEventInit): AudioProcessingEvent;
};