Page 1 of 1

Does Modul8 send MIDI signals out?

Posted: Sat Sep 27, 2008 7:42 pm
by artengine
I have been trying to learn more about Modul8 MIDI capacity.

Does anyone know if it sends MIDI Messages out or even through?

If not is there a way to export the logical record to some kind of MIDI file?

I have seen some discussion from 2006 and 2008 about a Timeline, which would be very fun to use for composing video work.

Posted: Mon Sep 29, 2008 10:26 pm
by david
Hello,

you could send MIDI message through the use of a Module :

modul8.getMidiDestinationsList()
modul8.sendMidi(endpoint, channel, param1, param2, param3)

endpoint : could be the name of one destination returned by getMidiDestinationsList or its id
channel, param2 and param3 : are numerical values
param1 : could be a numerical value or a string (NOTE_OFF, NOTE_ON, POLY_AFTERTOUCH, CONTROL_CHANGE, MODE_CHANGE, AFTERTOUCH, PITCHBEND, SYSTEM)

This is described in the documentation (page 104) but the right function is sendMidi (NOT sendMidiMessage).

David.