mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2024-11-22 04:40:53 +00:00
Merge pull request #37 from aatikturk/implement_v5.3_methods
Update reqs.py implemented set_record_directory method. (only availabe for obs websocket v5.3 or higher)
This commit is contained in:
commit
d217630289
@ -433,6 +433,19 @@ class ReqClient:
|
||||
"""
|
||||
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):
|
||||
"""
|
||||
Gets the active and show state of a source
|
||||
|
Loading…
Reference in New Issue
Block a user