onAudioProcess property - ScriptProcessorNode class - dart:web_audio library (original) (raw)

description

Stream<AudioProcessingEvent> getonAudioProcess

Get a Stream that fires events when AudioProcessingEvents occur. This particular stream is special in that it only allows one listener to a given stream. Converting the returned Stream.asBroadcastStream will likely ruin the soft-real-time properties which these events are fired and can be processed.

Implementation

Stream<AudioProcessingEvent> get onAudioProcess =>
    audioProcessEvent.forTarget(this);