several simultanius notes on the same key? #128
Unanswered
logos-maker
asked this question in
Q&A
Replies: 1 comment 2 replies
-
You absolutely can play several notes on the same key. The port channel key noteid tuple is the unique address of a note with -1 meaning wildcard. In practice this means either rotate channels and have at most 16 stacked notes or use note ids on all notes moreover bitwig activates voice stacking right now only if you implement the voice info draft extension and set the flag about stack is possible If I get a note off with a -1 as my id I will kill every note which matches that port channel key. Note ids are also very important because the plugin has to send a note end event with the note id for polymod does that help answer your question? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is the thought that you also should be able to play several simultaneous notes on the same key, for voice stacking for example with different settings for each note?
Why then does CLAP allow to not specify the note ID for CLAP_EVENT_NOTE_ON and CLAP_EVENT_NOTE_OFF ? but a generic -1 for unspecified note_id ?
If a note_id was given for a CLAP_EVENT_NOTE_ON why then do you not need to sent it for CLAP_EVENT_NOTE_OFF ?
Should you kill all notes with that key if you get a LAP_EVENT_NOTE_OFF with a note_id of -1 ?
Beta Was this translation helpful? Give feedback.
All reactions