command, cancelling velocity

sveva

2010-06-11 19:22:33

Hi there, I am new to this forum, I have a question: a command that ignores the velocity part of the midi signal
What is the hexodecimal code for velocity off? since a key sends velocity also, I have to make 127 notes-off(which is a lot of work, making 127note-off translators) for my keyboard key-pedal
Thanks
sveva

Attigo

2010-06-11 20:23:01

Hi Sveva,

To 'void' a velocity message you can just 'swallow' the message and send out the value you want... LIke this.

Code: Select all

Translator 0: Void Velocity
Options: stop=false
Incoming: MIDI B0 01 oo 
Outgoing: MIDI B0 01 7F 
or if you want to void an aftertouch message just have a translator swallow the message with no output...

Code: Select all

Translator 1: Void Aftertouch
Options: stop=false
Incoming: MIDI B0 01 oo 
Outgoing: (none)
Hope this helps!!

Scott

sveva

2010-06-12 20:48:21

Thank you Scott
it works.
and thank for the explanatory remarks, it helps knowing some of these symbols
sveva

Attigo

2010-06-13 20:23:09

Great!! Glad I could help...

Scott