mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
docs(ci): Update generated docs - ae906bb [skip ci]
This commit is contained in:
parent
ae906bb283
commit
bc0b499944
@ -2307,6 +2307,62 @@
|
|||||||
],
|
],
|
||||||
"responseFields": []
|
"responseFields": []
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "Gets the status of the virtualcam output.",
|
||||||
|
"requestType": "GetVirtualCamStatus",
|
||||||
|
"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 virtualcam output.",
|
||||||
|
"requestType": "ToggleVirtualCam",
|
||||||
|
"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 virtualcam output.",
|
||||||
|
"requestType": "StartVirtualCam",
|
||||||
|
"complexity": 1,
|
||||||
|
"rpcVersion": "1",
|
||||||
|
"deprecated": false,
|
||||||
|
"initialVersion": "5.0.0",
|
||||||
|
"category": "outputs",
|
||||||
|
"requestFields": [],
|
||||||
|
"responseFields": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Stops the virtualcam output.",
|
||||||
|
"requestType": "StopVirtualCam",
|
||||||
|
"complexity": 1,
|
||||||
|
"rpcVersion": "1",
|
||||||
|
"deprecated": false,
|
||||||
|
"initialVersion": "5.0.0",
|
||||||
|
"category": "outputs",
|
||||||
|
"requestFields": [],
|
||||||
|
"responseFields": []
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "Gets the status of the record output.",
|
"description": "Gets the status of the record output.",
|
||||||
"requestType": "GetRecordStatus",
|
"requestType": "GetRecordStatus",
|
||||||
|
@ -2124,6 +2124,11 @@ Studio mode has been enabled or disabled.
|
|||||||
- [SetSceneItemIndex](#setsceneitemindex)
|
- [SetSceneItemIndex](#setsceneitemindex)
|
||||||
- [GetSceneItemBlendMode](#getsceneitemblendmode)
|
- [GetSceneItemBlendMode](#getsceneitemblendmode)
|
||||||
- [SetSceneItemBlendMode](#setsceneitemblendmode)
|
- [SetSceneItemBlendMode](#setsceneitemblendmode)
|
||||||
|
- [Outputs](#outputs-1)
|
||||||
|
- [GetVirtualCamStatus](#getvirtualcamstatus)
|
||||||
|
- [ToggleVirtualCam](#togglevirtualcam)
|
||||||
|
- [StartVirtualCam](#startvirtualcam)
|
||||||
|
- [StopVirtualCam](#stopvirtualcam)
|
||||||
- [Stream](#stream)
|
- [Stream](#stream)
|
||||||
- [GetStreamStatus](#getstreamstatus)
|
- [GetStreamStatus](#getstreamstatus)
|
||||||
- [ToggleStream](#togglestream)
|
- [ToggleStream](#togglestream)
|
||||||
@ -3981,6 +3986,61 @@ Scenes and Groups
|
|||||||
| sceneItemBlendMode | String | New blend mode | None | N/A |
|
| sceneItemBlendMode | String | New blend mode | None | N/A |
|
||||||
|
|
||||||
|
|
||||||
|
## Outputs
|
||||||
|
|
||||||
|
### GetVirtualCamStatus
|
||||||
|
|
||||||
|
Gets the status of the virtualcam 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 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### ToggleVirtualCam
|
||||||
|
|
||||||
|
Toggles the state of the virtualcam 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 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### StartVirtualCam
|
||||||
|
|
||||||
|
Starts the virtualcam output.
|
||||||
|
|
||||||
|
- Complexity Rating: `1/5`
|
||||||
|
- Latest Supported RPC Version: `1`
|
||||||
|
- Added in v5.0.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### StopVirtualCam
|
||||||
|
|
||||||
|
Stops the virtualcam output.
|
||||||
|
|
||||||
|
- Complexity Rating: `1/5`
|
||||||
|
- Latest Supported RPC Version: `1`
|
||||||
|
- Added in v5.0.0
|
||||||
|
|
||||||
|
|
||||||
## Stream
|
## Stream
|
||||||
|
|
||||||
### GetStreamStatus
|
### GetStreamStatus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user