Update reqs.py

added set_record_directory  method to ReqClient.
This commit is contained in:
Adem 2023-10-23 09:29:16 +03:00 committed by GitHub
parent 8aa2e78ba6
commit 5bfe792fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -432,6 +432,19 @@ class ReqClient:
""" """
return self.send("GetRecordDirectory") return self.send("GetRecordDirectory")
def set_record_directory(self, recordDirectory):
"""
Sets the current directory that the record output writes files to.
IMPORTANT NOTE: Requires obs websocket v5.3 or higher.
:param recordDirectory: Output directory
:type recordDirectory: str
"""
payload = {
"recordDirectory": recordDirectory,
}
return self.send("SetRecordDirectory", payload)
def get_source_active(self, name): def get_source_active(self, name):
""" """
Gets the active and show state of a source Gets the active and show state of a source