obsws-python/examples/scene_rotate/__main__.py
onyx-and-iris 362ec22257 no longer sending event name to callback
update tests accordingly
2022-07-26 21:47:41 +01:00

20 lines
353 B
Python

import time
import obsstudio_sdk as obs
def main():
resp = cl.get_scene_list()
scenes = reversed(tuple(di["sceneName"] for di in resp["scenes"]))
for sc in scenes:
print(f"Switching to scene {sc}")
cl.set_current_program_scene(sc)
time.sleep(0.5)
if __name__ == "__main__":
cl = obs.ReqClient()
main()