AudioWorkletProcessor
The AudioWorkletProcessor interface of the Web Audio API represents an audio processing code behind a custom AudioWorkletNode. It lives in the AudioWorkletGlobalScope and runs on the Web Audio rendering thread. In turn, an AudioWorkletNode based on it runs on the main thread.
Properties
Functions
Link copied to clipboard
abstract fun process(inputs: ReadonlyArray<ReadonlyArray<Float32Array<*>>>, outputs: ReadonlyArray<ReadonlyArray<Float32Array<*>>>, parameters: ReadonlyRecord<AudioParamName, Float32Array<*>>): Boolean