I would like to be able to operate Virtual Video Director from NOISE PRODUCTIONS LTD with companion. It is important to me that I can turn the triggers on and off per microphone from companion. There is little information about API/Control on the software's website. If you have installed the software, this can be found under API. I have copied the below from it.
Keyboard Shortcut
The following keyboard shortcut will turn VVD on and off: Ctrl + Shift + P (this works even when VVD is minimized)
UDP Control
You can also turn on and off VVD with a UDP message sent to port 9999: ON and OFF
An exmple you could use with netcat in a batch file would be:
@echo|set /p="off "| nc localhost 9999 -w 1
@echo|set /p="on "| nc localhost 9999 -w 1
Hello everyone,
I would like to be able to operate Virtual Video Director from NOISE PRODUCTIONS LTD with companion. It is important to me that I can turn the triggers on and off per microphone from companion. There is little information about API/Control on the software's website. If you have installed the software, this can be found under API. I have copied the below from it.
Thanks for the help!
Welcome to the Virtual Video Director API The methods below are available and will be added to over time. http://127.0.0.1:9000/api/state (gets the current state of Virtual Video Director) http://127.0.0.1:9000/api/state/setchannel/1 #new channel number# http://127.0.0.1:9000/api/state/setpower/off#On/Off# or #True/False# or bitfocus/companion-module-requests#1/0# http://127.0.0.1:9000/api/state/togglemutechannel/1 #toggle the mute status on a channel# http://127.0.0.1:9000/api/state/mutechannel/1 #mute a channel# http://127.0.0.1:9000/api/state/unmutechannel/1 #un-mute a channel#
Keyboard Shortcut The following keyboard shortcut will turn VVD on and off: Ctrl + Shift + P (this works even when VVD is minimized)
UDP Control You can also turn on and off VVD with a UDP message sent to port 9999: ON and OFF An exmple you could use with netcat in a batch file would be: @echo|set /p="off "| nc localhost 9999 -w 1 @echo|set /p="on "| nc localhost 9999 -w 1