I just have some problems to trigger clips using midi. Here's my setup for a multi channel projection:
- 8 projectors, 8 computers - but 16 video channels (each screen is split in 2 screens)
- on each computer are 127 clips - some clips should play on the left side, some on the right
- I prepared 2 layers - one is moved to the right, one to the left
Is it possible to trigger every clip directly with one midi note each? Is there a chance to do this without activating layers - so I could start 2 clips on 2 layers at the same time?
This is what I found (see below). But it doesn't work. No layer is selected and no clip will be triggered. And I don't know how to tell M8 which clip to choose. I was hoping to send a midi note from Live as it is described in the message (channel -> computer, note -> layer, velocity -> clip). Is the clip number taken from position in banks? Starting from No. 1 in Bank 1 and so on?
Please help! This script seams to be a good solution.
Thanks and good night!
Th
http://www.garagecube.com/forum/viewtop ... t=position
Add this code into the "direct event" (script) in a new module.
Code:
if type == 'MIDI' :
if param['channel']== 15 and param['param1'] > 0 and param['param1'] < 11:
modul8.setValue ('ctrl_layer_media',param['param2'],param['param1'])
And simply use this way with your sequencer :
->channel 15 -> note = the layer (1 to 10) -> value =the media (0 to 127)
You can change the channel (the channel 15 is used in this exemple).