You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 and I've been trying to display a video source for several days now.
With small scripts I made the first attempts to change the position and size of the boxes. It is working.
Here is my test code to display source 1 in box 1:
import PyATEMMax
switcher = PyATEMMax.ATEMMax()
switcher.connect("192.168.178.50")
if switcher.waitForConnection(infinite=False):
switcher.setSuperSourceBoxParametersEnabled(switcher.atem.boxes.box1,1)
switcher.setSuperSourceBoxParametersInputSource(switcher.atem.boxes.box1,switcher.atem.videoSources.input1.value)
switcher.setSuperSourceBoxParametersPositionX(switcher.atem.boxes.box1,-2)
switcher.setSuperSourceBoxParametersPositionY(switcher.atem.boxes.box1,2)
switcher.setSuperSourceBoxParametersSize(switcher.atem.boxes.box1, 0.4)
print("Settings updated")
otherwise:
print("ERROR: no response from switcher")
switcher.disconnect()
Can someone help me out?
The text was updated successfully, but these errors were encountered:
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 and I've been trying to display a video source for several days now.
With small scripts I made the first attempts to change the position and size of the boxes. It is working.
Here is my test code to display source 1 in box 1:
import PyATEMMax
switcher = PyATEMMax.ATEMMax()
switcher.connect("192.168.178.50")
if switcher.waitForConnection(infinite=False):
switcher.setSuperSourceBoxParametersEnabled(switcher.atem.boxes.box1,1)
switcher.setSuperSourceBoxParametersInputSource(switcher.atem.boxes.box1,switcher.atem.videoSources.input1.value)
switcher.setSuperSourceBoxParametersPositionX(switcher.atem.boxes.box1,-2)
switcher.setSuperSourceBoxParametersPositionY(switcher.atem.boxes.box1,2)
switcher.setSuperSourceBoxParametersSize(switcher.atem.boxes.box1, 0.4)
print("Settings updated")
otherwise:
print("ERROR: no response from switcher")
switcher.disconnect()
Can someone help me out?
The text was updated successfully, but these errors were encountered: