Hello.
I’m trying to complete “Crete a basic audio plugin tutorial” and i’m having some problems. I don’t understand why MIDI effect always have an audio input in DAW. So, it seems like “Plugin is a MIDI effect plugin” don’t help
I’s trying to manually override:
bool TestPluginAudioProcessor::acceptsMidi() const {return true;}
//{
// #if JucePlugin_WantsMidiInput
// return true;
// #else
// return false;
// #endif
//}
bool TestPluginAudioProcessor::producesMidi() const {return true;}
//{
// #if JucePlugin_ProducesMidiOutput
// return true;
// #else
// return false;
// #endif
//}
but it’s also hasn’t helped me.
What am i doing wrong??
I also try to compile Arpegiator example and have the same problem
Need help, pls.