alswefi
2016-05-05 17:11:16
that is useful with the hosts which never see the 16 channels of input midi port
as cubase element , FLstudio and many more.
some applications like Sonar and Protools see the 16 channels well.
any help??
alswefi
2016-05-05 17:11:16
DvlsAdvct
2016-05-09 15:28:33
Code: Select all
Translator 1: Channel 1 Passthrough
Incoming: MIDI Message
RAW/Sysex
pp qq rr
Rules: if pp==0x90 then exit rules, execute outgoing action
if pp==0x80 then exit rules, execute outgoing action
if pp==0xB0 then exit rules, execute outgoing action
Exit rules, skip outgoing action
Outgoing: MIDI Message
RAW/Sysex
pp qq rr
Virtual Port: MT Virtual Port 1
alswefi
2016-05-10 07:31:23
Code: Select all
Translator 1: Channel 1 Passthrough
Incoming: MIDI Message
RAW/Sysex
pp qq rr
Rules: if pp==0x90 then exit rules, execute outgoing action
if pp==0x80 then exit rules, execute outgoing action
if pp==0xB0 then exit rules, execute outgoing action
Exit rules, skip outgoing action
Outgoing: MIDI Message
RAW/Sysex
pp qq rr
Virtual Port: MT Virtual Port 1
Code: Select all
Translator 2: Channel 2 Passthrough
Incoming: MIDI Message
RAW/Sysex
pp qq rr
Rules: if pp==0x91 then exit rules, execute outgoing action
if pp==0x80 then exit rules, execute outgoing action
if pp==0xB0 then exit rules, execute outgoing action
Exit rules, skip outgoing action
Outgoing: MIDI Message
RAW/Sysex
pp qq rr
Virtual Port: MT Virtual Port 2
DvlsAdvct
2016-05-10 15:31:06
alswefi
2016-05-11 03:27:50
CreepyPants
2016-12-06 17:01:10
sjcaldwell
2016-12-06 17:24:09
CreepyPants
2016-12-06 19:12:35
sjcaldwell
2016-12-06 19:27:31
CreepyPants
2016-12-06 19:54:28
sjcaldwell
2016-12-06 20:12:43
CreepyPants
2016-12-06 21:50:58
CreepyPants
2016-12-06 22:00:52
Code: Select all
Translator 2: Channel 1 2byte Passthrough
Incoming: MIDI Message
RAW/Sysex
pp qq
Rules: if pp==0xD0 then exit rules, execute outgoing action
Exit rules, skip outgoing action
Outgoing: MIDI Message
RAW/Sysex
pp qq
Virtual Port: MT Virtual Port 1
sjcaldwell
2016-12-06 23:50:08
My guess is the midi parser in BMT determines the length needed for the given message and if it is 3 bytes and the third byte is missing (by seeing another Midi Status byte), it will discard the message.CreepyPants wrote: My question is:
Does MTPro ignore 2 byte MIDI Messages then if Raw MIDI is selected and "pp qq rr" is the variable 'mask'?
And if so, then for 2 byte MIDI Messages, would you just look for Raw MIDI "pp qq" and that would apply to "Any 2 byte MIDI message"?
CreepyPants
2016-12-07 00:56:21
sjcaldwell
2016-12-07 01:01:45
florian
2016-12-11 21:56:37
CreepyPants
2016-12-16 16:19:35
florian
2016-12-19 09:57:56
Code: Select all
if pp>127 then exit rules, skip Outgoing Action
if qq>127 then exit rules, skip Outgoing Action
CreepyPants
2016-12-19 16:19:03
sjcaldwell
2016-12-19 17:08:33