PyATEMMax
PyATEMMax copied to clipboard
A Python library to monitor and control Blackmagic Design ATEM video switchers.
This simple script is enough to chrash the program: import PyATEMMax import time switcher = PyATEMMax.ATEMMax() switcher.connect("192.168.1.192") testing = switcher.waitForConnection() print ("connect 1", testing) time.sleep(2) testing = switcher.disconnect() print ("disconnect...
Would be possible to implement a functionality to start and stop ISO recording? I'm using the newer Atem Minis. If not, is there another method to get the same results?
Hello, I have an ATEM Mini Extreme and I want to use PyATEMMax to display multiple sources on the screen. Similar to a quad splitter. SuperSource is good for this...
I see that with "setKeyerOnAirEnabled" you can turn on or off any upstreamkey. But how can I put it on preview? So it would go on live (on air) at...
I am planning to make a GUI and I would need to know if the Upstream keys are on air or not.Is there a method which returns false or true...
taken from https://docs.openswitcher.org/fields/switcher.html, used in Constellation 8K
Added basic functionality for the new Fairlight Audio Mixer. All testing done on an Atem Mini Pro running the latest firmware. ### Features implemented so far: - Input/Master Volume Control...
Does this work or am i just stupid ? and dont know how to use it ?
For the existing source it is impossible to set nextTransition to value 6 which is correct, because the value is validated with wrong enum: `nextTransition_val = self.atem.transitionStyles[nextTransition].value` in my case...