AUv3 virtual MIDI cables

Are AUv3 virtual MIDI cables on the roadmap for the JUCE API, or will we have to implement them ourselves? Perhaps they’re already supported but I’ve yet to find the appropriate class…?

https://developer.apple.com/videos/play/wwdc2015/508/ @ 45:30, Safari only

Currently we are just setting the virtual MIDI cable count to 1 and don’t do anything beyond this. We may add support for this later.

Thanks Fabian. Whereabouts does this happen? I’d really like to support cables in my MIDI effect plugin.

easy to find if you search for “midicable” in the code:

modules/juce_audio_plugin_client/AU/juce_AUv3_Wrapper.mm, line 495

1 Like

Thanks @timur!