Markwasfy
New Member
Obs WebSocket docs define that groups in OBS are actually scenes, but renamed and modified. In obs-web sockets, we treat them as scenes where we can:
but when I try to add an input to a specified group it gives me this error:
How to add an input to a specific group?
Python:
import obsws_python as obs
cl = obs.ReqClient(host='localhost', port=4444, password='password', timeout=3)
cl.create_input("Group","media","ffmpeg_source", {}, True)
Code:
obsws_python.error.OBSSDKRequestError: Request CreateInput returned code 602. With the message: The specified source is not a scene. (Is group)
How to add an input to a specific group?