You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It basically makes a simple map of notes played in any off the channels except drums (channel 9).
Then let's say I have a simple two track song. One track with a simple hihat running on the drum track and a second track with a simple bass.
When I solo the drums, my buffer dos not get filled, because of the condition. When my bass channel is playing solo. My buffer fills up as it supposed to. Great.
Now when BOTH of the channels play. I always get a 'bleed' from the drum channel into my buffer. The buffer note sometimes get filled by the playing hihat from the drum channel.
I am aware that there is something such as running midi messages, when the message is just 2 bytes long and so the channel stays the same. I looked into your code and presume this is handled very well in your library. I just don't know how to properly debug this. And I don't even know if this might be the issue.
Could you help in any way? Thank you.
The text was updated successfully, but these errors were encountered:
Hello and thank you for this library! I am currently working on a project where i have a code like this:
`
void onNote(uint8_t channel, uint8_t note, uint8_t velocity, uint16_t timestamp)
{
if (channel == 9) return;
}
`
It basically makes a simple map of notes played in any off the channels except drums (channel 9).
Then let's say I have a simple two track song. One track with a simple hihat running on the drum track and a second track with a simple bass.
When I solo the drums, my buffer dos not get filled, because of the condition. When my bass channel is playing solo. My buffer fills up as it supposed to. Great.
Now when BOTH of the channels play. I always get a 'bleed' from the drum channel into my buffer. The buffer note sometimes get filled by the playing hihat from the drum channel.
I am aware that there is something such as running midi messages, when the message is just 2 bytes long and so the channel stays the same. I looked into your code and presume this is handled very well in your library. I just don't know how to properly debug this. And I don't even know if this might be the issue.
Could you help in any way? Thank you.
The text was updated successfully, but these errors were encountered: