-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
May 28, 2023
1 parent
b302181
commit d866546
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
Set-OBSRecordDirectory | ||
---------------------- | ||
|
||
|
||
|
||
|
||
### Synopsis | ||
Set-OBSRecordDirectory : SetRecordDirectory | ||
|
||
|
||
|
||
--- | ||
|
||
|
||
### Description | ||
|
||
Sets the current directory that the record output writes files to. | ||
|
||
|
||
Set-OBSRecordDirectory calls the OBS WebSocket with a request of type SetRecordDirectory. | ||
|
||
|
||
|
||
--- | ||
|
||
|
||
### Related Links | ||
* [https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setrecorddirectory](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setrecorddirectory) | ||
|
||
|
||
|
||
|
||
|
||
--- | ||
|
||
|
||
### Parameters | ||
#### **RecordDirectory** | ||
|
||
Output directory | ||
|
||
|
||
|
||
|
||
|
||
|
||
|Type |Required|Position|PipelineInput | | ||
|----------|--------|--------|---------------------| | ||
|`[String]`|true |1 |true (ByPropertyName)| | ||
|
||
|
||
|
||
#### **PassThru** | ||
|
||
If set, will return the information that would otherwise be sent to OBS. | ||
|
||
|
||
|
||
|
||
|
||
|
||
|Type |Required|Position|PipelineInput |Aliases | | ||
|----------|--------|--------|---------------------|-----------------------------| | ||
|`[Switch]`|false |named |true (ByPropertyName)|OutputRequest<br/>OutputInput| | ||
|
||
|
||
|
||
|
||
|
||
--- | ||
|
||
|
||
### Syntax | ||
```PowerShell | ||
Set-OBSRecordDirectory [-RecordDirectory] <String> [-PassThru] [<CommonParameters>] | ||
``` |