-
Hello there, I'm trying to find a solution to re-channelize the midi input of a keyboard controller set as input via Ctrlr. I couldn't find any solution in the panel settings, the only way I can send the notes to the output is by activating the input to output option ( the one with (channelize)" does not seem to do anything. This is the only way I'm thinking it would allow a re-channelize of the input. If there are any other ways I'm missing please let me know. I tried to look in the original forum to no avail and another post here on github was mentioning a setting Ctrlr Controller to Output that would allow this, but I don't see it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
I did it on a panel to convert midi input messages to Mackie MCU. It requires a transformer script in LUA on the "when the panel receives a midi message" callback in the global properties. |
Beta Was this translation helpful? Give feedback.
-
Ok I solved it this way. I have a button to control if the input should be re-channeled, with a method when it changes the status that activates the midi thru input to output if the button is off and viceversa it deactivates it if the button is on.
And then I have the following method whenever I receive a MIDI input on the panel
I mean I guess you could do without the MIDI thru, by adding an else in EDIT: in reality I'm rechanneling everything from the MIDI input not the notes only, I think it should be expanded to treat only the notes, but for my use it is fine like this. |
Beta Was this translation helpful? Give feedback.
Ok I solved it this way. I have a button to control if the input should be re-channeled, with a method when it changes the status that activates the midi thru input to output if the button is off and viceversa it deactivates it if the button is on.
And then I have the following method whenever I receive a MIDI input on the panel