Hello,
Is It possible to send a burst of midi control change messages from mAirList.
The idea is to “fade in” or “fade out” from a hardware mixer at start or stop of a sound.
Thanks a lot for your help.
Hello,
Is It possible to send a burst of midi control change messages from mAirList.
The idea is to “fade in” or “fade out” from a hardware mixer at start or stop of a sound.
Thanks a lot for your help.
if someone needs:
// midiOut(ID_WINDOWS_MIDI_DEVICE, MIDI_CHANEL(176-191 = B0 - BF = 1 - 16), PARAMETER(0-127), VALUE(0-127));
var i: integer;
begin
midiOutOpen(1);
//Send Channel input 1 ON (midi channel 1, parameter 64 for Yamaha Mixer)
midiOut(1, 176, 64, 127);
for i := 0 to 127 do
begin
//Send Channel input 1 level (midi channel 1, parameter 1 for Yamaha Mixer)
midiOut(1, 176, 1, i);
//Delay to ajuste fade time
sleep(5);
SystemLog('DEBUG: ' + IntToStr(i) + ' ');
end;
midiOutClose(1);
end.