mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
docs(ci): Update generated docs - 38d7859
[skip ci]
This commit is contained in:
parent
38d78596ce
commit
96a2fd8c25
@ -2363,6 +2363,90 @@
|
||||
"requestFields": [],
|
||||
"responseFields": []
|
||||
},
|
||||
{
|
||||
"description": "Gets the status of the replay buffer output.",
|
||||
"requestType": "GetReplayBufferStatus",
|
||||
"complexity": 1,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": [
|
||||
{
|
||||
"valueName": "outputActive",
|
||||
"valueType": "Boolean",
|
||||
"valueDescription": "Whether the output is active"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Toggles the state of the replay buffer output.",
|
||||
"requestType": "ToggleReplayBuffer",
|
||||
"complexity": 1,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": [
|
||||
{
|
||||
"valueName": "outputActive",
|
||||
"valueType": "Boolean",
|
||||
"valueDescription": "Whether the output is active"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Starts the replay buffer output.",
|
||||
"requestType": "StartReplayBuffer",
|
||||
"complexity": 1,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": []
|
||||
},
|
||||
{
|
||||
"description": "Stops the replay buffer output.",
|
||||
"requestType": "StopReplayBuffer",
|
||||
"complexity": 1,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": []
|
||||
},
|
||||
{
|
||||
"description": "Saves the contents of the replay buffer output.",
|
||||
"requestType": "SaveReplayBuffer",
|
||||
"complexity": 1,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": []
|
||||
},
|
||||
{
|
||||
"description": "Gets the filename of the last replay buffer save file.",
|
||||
"requestType": "GetLastReplayBufferReplay",
|
||||
"complexity": 2,
|
||||
"rpcVersion": "1",
|
||||
"deprecated": false,
|
||||
"initialVersion": "5.0.0",
|
||||
"category": "outputs",
|
||||
"requestFields": [],
|
||||
"responseFields": [
|
||||
{
|
||||
"valueName": "savedReplayPath",
|
||||
"valueType": "String",
|
||||
"valueDescription": "File path"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Gets the status of the record output.",
|
||||
"requestType": "GetRecordStatus",
|
||||
|
@ -2129,6 +2129,12 @@ Studio mode has been enabled or disabled.
|
||||
- [ToggleVirtualCam](#togglevirtualcam)
|
||||
- [StartVirtualCam](#startvirtualcam)
|
||||
- [StopVirtualCam](#stopvirtualcam)
|
||||
- [GetReplayBufferStatus](#getreplaybufferstatus)
|
||||
- [ToggleReplayBuffer](#togglereplaybuffer)
|
||||
- [StartReplayBuffer](#startreplaybuffer)
|
||||
- [StopReplayBuffer](#stopreplaybuffer)
|
||||
- [SaveReplayBuffer](#savereplaybuffer)
|
||||
- [GetLastReplayBufferReplay](#getlastreplaybufferreplay)
|
||||
- [Stream](#stream)
|
||||
- [GetStreamStatus](#getstreamstatus)
|
||||
- [ToggleStream](#togglestream)
|
||||
@ -4040,6 +4046,87 @@ Stops the virtualcam output.
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
---
|
||||
|
||||
### GetReplayBufferStatus
|
||||
|
||||
Gets the status of the replay buffer output.
|
||||
|
||||
- Complexity Rating: `1/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
|
||||
**Response Fields:**
|
||||
|
||||
| Name | Type | Description |
|
||||
| ---- | :---: | ----------- |
|
||||
| outputActive | Boolean | Whether the output is active |
|
||||
|
||||
---
|
||||
|
||||
### ToggleReplayBuffer
|
||||
|
||||
Toggles the state of the replay buffer output.
|
||||
|
||||
- Complexity Rating: `1/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
|
||||
**Response Fields:**
|
||||
|
||||
| Name | Type | Description |
|
||||
| ---- | :---: | ----------- |
|
||||
| outputActive | Boolean | Whether the output is active |
|
||||
|
||||
---
|
||||
|
||||
### StartReplayBuffer
|
||||
|
||||
Starts the replay buffer output.
|
||||
|
||||
- Complexity Rating: `1/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
---
|
||||
|
||||
### StopReplayBuffer
|
||||
|
||||
Stops the replay buffer output.
|
||||
|
||||
- Complexity Rating: `1/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
---
|
||||
|
||||
### SaveReplayBuffer
|
||||
|
||||
Saves the contents of the replay buffer output.
|
||||
|
||||
- Complexity Rating: `1/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
---
|
||||
|
||||
### GetLastReplayBufferReplay
|
||||
|
||||
Gets the filename of the last replay buffer save file.
|
||||
|
||||
- Complexity Rating: `2/5`
|
||||
- Latest Supported RPC Version: `1`
|
||||
- Added in v5.0.0
|
||||
|
||||
|
||||
**Response Fields:**
|
||||
|
||||
| Name | Type | Description |
|
||||
| ---- | :---: | ----------- |
|
||||
| savedReplayPath | String | File path |
|
||||
|
||||
|
||||
## Stream
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user