How to transpose midi out?

redss55

2013-08-10 05:29:05

How do I use Midi Translator to transpose notes? (since my keyboard won't let me shift octave registers I can route the midi thru MT on my computer)

DvlsAdvct

2013-08-10 21:28:23

Hi redss55

You can easily use MIDI Translator to transpose notes, but how do you want to tell MT to transpose the notes? For example, are there any buttons on your MIDI keyboard you could use as octave shift buttons, or would you use computer keyboard commands?

Does that make sense?
Thanks
J

redss55

2013-08-10 22:33:56

I just want to load a preset which will transpose the entire keyboard down one octave. Can I do that with midi translator classic?

DvlsAdvct

2013-08-11 23:07:36

Yes, you can. You need one translator for every key, though, since Classic does not process Rules. With Pro you can do this with one translator, with Classic you can't. Assuming we're starting with middle C and bringing everything down one octave, you'd need translators like:

Code: Select all

Translator 1: C3 to C2
Incoming Message: 90 30 pp
OUtgoing Message: 90 24 pp

Translator 2: B2 to B1
Incoming Message: 90 2F pp
Outgoing Message: 90 23 pp

Translator 3: Bp2 to Bp1
Incoming Message: 90 2E pp
Outgoing Message: 90 22 pp
That make sense?