Midi Input Keyboard

I have created a midi plugin with a piano interface, but i am trying to give each key a custom sound. Is that at all possible in JUCE???

The MidiKeyboardComponent can only send MIDI notes, you have to render them with a Synthesizer class. Here’s an example of a basic class inheriting from Synthesizer to play a sound from a wav file: https://vaporsoft.net/creating-a-very-simple-sampler-audio-plugin-in-juce-5/

1 Like

Thank you. I see what the article is describing, I just have to figure out how to make it find sound files and not synth sounds.