I’m trying to make a basic midi plugin for studio one, but I’m having trouble intercepting midi messages.
I followed the making an audio plugin tute, and the plugin loads in Studio One for me (v3.3.4.41922)
But it doesn’t adjust the volume like it’s supposed to.
So I put in a test int and incremented it in different places to see what was happening with the execution. As you can see in the code comments below, processBlock appears to be firing. but midiMessages appears to be empty
The first number in the text field in the plugin screenshot is a test int in the editor class, the second one is the test int below in the processor code.
The template code created by JUCE already sets these three bools properly, I tried you snippet anyway though but neither way makes any difference.
It seems pretty clear that JUCE’s ability to process midi messages in Studio One is broken at the moment, which is frustrating. I just wanted to do a simple audio plugin that displayed lyrics based on midi input, but until this bug is fixed there isn’t really anything I can do