pub fn audio_processor_start_with_midi<Processor: AudioProcessor<SampleType = f32> + MidiEventHandler + Send + 'static>(
    audio_processor: Processor,
    handle: &Handle
) -> StandaloneHandles
Expand description

Start an AudioProcessor / MidiEventHandler as a stand-alone cpal app and forward MIDI messages received on all inputs to it.

Returns the cpal::Streams and [MidiHost]. The audio-thread will keep running until these are dropped.