記事一覧

MIDI Note Receiver

MIDIのノートNo.で映像のパラメータをコントロールできるようなパッチができるといいなと思って取り組んでるんですが、そのための入力パッチというと MIDI Note Receiver ですよね。
でもこれ、各ノートNo.がそれぞれ独立したアウトプットに割り振られていて、

my_parameter = recieved_MIDI_NoteNo * aRate;

みたいなことをやろうとするとえらい面倒くさいことに・・
誰かいい方法知らないっすかね?


I want to control movie with MIDI controllers, and making a patch to do that.
In my patch I want to control a parameter of a movie with MIDI note value so that I can control the movie with my MIDI keyboard.
To receive MIDI signals using MIDI Note Receiver seems to be the only way, but taking a look at the MIDI Note Receiver's panel to find all the notes are separate in individual outputs, so it's quite difficult to do the thing like this:

my_parameter = recieved_MIDI_NoteNo * aRate;

Does anybody know a good way to do this?