Automate Behringer X32 mixers from PowerShell using OSC

Here is a simple example using the OSC DLL with Windows PowerShell to control the Behringer X32 range of audio mixers. I have tried this with the XR12 but will also work with any of the X Air XR16, XR18 and X32 models. Sample script showing some basic settings: # Connection Behringer X32 add-type -path… Continue reading Automate Behringer X32 mixers from PowerShell using OSC

Snapshot ATEM Mixer settings with PowerShell

This is a work in progress and will be added to ISE as a standard menu to provide selective backup/restore of ATEM settings like the BMD Software Panel but using JSON format rather than XML. Example snippet of code for the ME properties: add-type -path 'C:\Users\imorrish\Documents\WindowsPowerShell\SwitcherLib.dll' $atem = New-Object SwitcherLib.Switcher("192.168.1.8") $atem.Connect() $ME = $atem.GetMEs() $me1SnapShot… Continue reading Snapshot ATEM Mixer settings with PowerShell