Re: Advanced Unison
Posted: Sun Nov 22, 2015 2:56 pm
I dont have a midi keyboard so unfortunately I wont be able to help with that part.
Regarding the cpu issue, what happens with this unison method is that we are actually playing a chord of 4 or 5 notes (or whatever you set your unison voices to), but instead of playing different keys you press the same key multiple times at the same time. In real life this of course wouldn't make sense since on a piano you can only press a key once. What this means is that we are calculating the signal flow several times (incl, envelopes, filter, etc) for all unison voices. So even if we just have one oscillator its still calculated multiple times.
The least cpu intensive way is to actually have several oscillators that are summed up, and you only calculate one filter and envelope for all at once.
Regarding the cpu issue, what happens with this unison method is that we are actually playing a chord of 4 or 5 notes (or whatever you set your unison voices to), but instead of playing different keys you press the same key multiple times at the same time. In real life this of course wouldn't make sense since on a piano you can only press a key once. What this means is that we are calculating the signal flow several times (incl, envelopes, filter, etc) for all unison voices. So even if we just have one oscillator its still calculated multiple times.
The least cpu intensive way is to actually have several oscillators that are summed up, and you only calculate one filter and envelope for all at once.