|
|
|
|
|
by johnrackles
2230 days ago
|
|
Holy shit this is so cool. Sadly I don't own a Minilogue but a friend does and it really is an amazing piece of hardware. I've been wanting to do something music related (except making music) for a while now but audio processing seemed like a very daunting task. So for now I made a youtube to mp3 converter because all those you find on google have a billion ads. But this project is way more exciting! |
|
The Korg SDK [1] comes with a lot of tools right out of the box (biquad filters, dual delay lines, wave types, access to parameter knobs, etc.) and their dev environment is really easy to install (you upload patches via MIDI sysex!).
The actual audio programming is wonderful - Korg's SDK gives you an pointer array of realtime values which you can manipulate how you see fit before they hit the audio out. Its simple (I made a auto pan in 10 lines of code [2]) but powerful when you apply buffers, etc.
[1]: https://github.com/korginc/logue-sdk
[2]: https://github.com/schollz/logue/blob/master/simplepan/simpl...