solocky
2018-07-23 06:56:43
Hello all,
As the title says I'd like to filter all information except for CC's on all channels...
Reason being inhave one controller connected to 2 systems.
I haven't tried anything yet just thought id ask in advance...
Thanks for any info..
👍🏾
Steve-Bome Forum Moderator
2018-07-23 07:55:52
Hi,
In order to do this you will need to determine every type of MIDI message that may come in. Usually you can define this as any 1 byte two byte and 3 byte MIDI message, however this will not filter any SysEx Messages. However if you do not define any default routes, anything that you don’t define in a translator should be filtered out.
So you should just define a translator that handles CC messages and then nothing else should get through
Incoming: Raw MIDI pp qq rr (define incoming ports you want to use here)
——-
Rules:
// Look for CC messages pp will start with a B but could be on any channel B0, B1, … BF
ss=pp&0xb0
if ss!=0xb0 then exit rules, skip outgoing action
//
// End of Rules
——-
Outgoing:Raw MIDI pp qq rr on (define output port you want them to go to here)
Options: Swallow
——
Since your project had not defined any default incoming, or outgoing ports or routes, you should get the behavior you want as long as you define the incoming and outgoing ports within this translator. Note that outgoing MIDI will go to both ports so if you want to separate which channels go to which ports, you will need two translators and additional rules for each translator to tell which MIDI channels for each translator.
Steve Caldwell
Bome Q and A Moderator and
Independent Bome Consultant/Specialist
bome@sniz.biz
solocky
2018-07-28 11:12:01
Hey Steve,
Thanks…Worked on the first try…👍🏾👍🏾
Steve-Bome Forum Moderator
2018-07-28 14:26:39
comment
I had no doubts. Glad I cold help!