Midi CC
Hi
Any chance that the media in the dashboard could be controlled by Midi CC 0-127: Eg Midi CC 1, 0-127 . I currently have it controlled by Note on/off and you can assign a control change to the media but i don't seem to be able to assign 1 control change to a layer and use the variable within in that controller for media selection 0-127
Using note on/off works great but i'm quickly running out of channels.
Cheers
Comments
Sorry it's not possible.
You can submit an idea on Uservoice, or you can use the developer-kit to write a script that does what you want.
Best. Philippe
You cannot use a MIDI control to assign the whole media selection for one layer.
Please see the examples in the developer-kit : it explains easily how to control Millumin via OSC.
Write a script that receive MIDI, and depending on the value, sends the right OSC message ("/millumin/layer/media/1/0" when CC1 1, "/millumin/layer/media/2/0" when CC1 2).
Best. Philippe
Media's MIDI mapping can only be done at the "cell" level, not at the "row" level. If needed, please submit an idea on Uservoice, it helps us to keep track of user requests.
In the developer-kit, there are various examples showing you how to control Millumin via OSC. Some technologies requires third-party softwares (Quartz Composer, Processing) , other don't (Ruby, Python, ...) .
Here is a video for Processing.
Best. Philippe
I think I get what kind of functions you want and admits that it could be very useful.
If I understand well, you would like, for example :
- Control Change Channel 1 / 1 / from 0>50: launch cell 1 of layer 1
- Control Change Channel 1 / 1 / from 51>100: launch cell 2 of layer 1
- Control Change Channel 1 / 1 / from 101>127: launch cell 3 of layer 1
Is this what you mean?
Cheers,
Vincent
Ok, since the begining I correctly understand your idea : you want to assign a MIDI message to control the whole "row" (and not only a specific "cell").
It's not possible in Millumin (and I din't think it's possible in other software such as Ableton Live or Modul8). The "variable" doesn't define a different message : "CC 1 / 1 / 20" or "CC 1 / 1 / 32" is still the same MIDI message. So Millumin (and other software such as Ableton Live or Modul8) interpret it as the same message through MIDI learning.
In consequence, my solution is still the same : you could code a script or a mini-application (find inspiration in the developer-kit) to interpret the "variable", to launch different media depending on it.
Best. Philippe
Controlling the whole "media row" with a solo CC midi message, or using the "variable" to know which media to start, is the same thing : it's a non-standard use of MIDI.
Standard use is : one MIDI button/fader = one UI component.
This limitation can also be seen Ableton Live or Modul8. And as you hightlighed, you can code your own module for Modul8, to override this standard behavior. Simple module coding, but necessary.
Am I clear enough ?
So the solution I proposed is the same : code you own module/script for Millumin, to override the standard behavior (don't use MilluPlug, it won't do what you want). Not a big deal, but necessary.
Best. Philippe