Hello,
I use the MPX1 as an external effect.
It is linked with the external effect fx1 of potato on my main PC.
I would like from my encoding PC dedicated to the stream remote control with the stream deck via a macro for the bypass of the external effect fx1 (Directly point Voicemeter Potato or the MPX1 through the VBAN2MIDI)
The contents of the activated macro could be
External_FX[1].Volume = 10
Toggle.B1 = off
Toggle.B2 = off
Or send MIDI ControlChange via VBAN2MIDI
Does anyone have an idea to create this macro?
Regards
Remote Voicemeeter Potato macro button bypass ext fx MPX1
-
- Posts: 25
- Joined: Sun Jul 01, 2018 5:08 pm
-
- Posts: 25
- Joined: Sun Jul 01, 2018 5:08 pm
Re: Remote Voicemeeter Potato macro button bypass ext fx MPX1
I answer myself:
I use this macro in the following context. It's for a live stream performance system. I activate the MPx1 fx on demand for voice announcements.
Initial State
Button On
Button Off
With this macro, you control remotely your's external fx by midi and route one strip with a single button Dtream Deck.
Good luck and have a fun
I use this macro in the following context. It's for a live stream performance system. I activate the MPx1 fx on demand for voice announcements.
Initial State
Code: Select all
System.SendMidi("out1", "prg-change", 3, 1);
System.SendMidi("out1", "ctrl-change", 3, 84, 0);
BEGIN_SECTION("vban1")
Strip(0).fx1=0;
Strip(0).B1=1;
Strip(0).B2=1;
END_SECTION
Code: Select all
System.SendMidi("out1", "prg-change", 3, 2);
System.SendMidi("out1", "ctrl-change", 3, 84, 0); //Bypass On CC84
BEGIN_SECTION("vban1")
Strip(0).B1=0;
Strip(0).B2=0;
Strip(0).fx1=10;
END_SECTION
Button Off
Code: Select all
System.SendMidi("out1", "prg-change", 3, 1);
System.SendMidi("out1", "ctrl-change", 3, 84, 127); //Bypass On CC84
BEGIN_SECTION("vban1")
Strip(0).fx1=0;
Strip(0).B1=1;
Strip(0).B2=1;
END_SECTION
Good luck and have a fun