mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
docs(travis): Update protocol.md - 8b841f0 [skip ci]
This commit is contained in:
parent
8b841f026e
commit
da9dd6f775
@ -1326,6 +1326,72 @@
|
||||
"lead": "",
|
||||
"type": "class",
|
||||
"examples": []
|
||||
},
|
||||
{
|
||||
"subheads": [],
|
||||
"description": "Current recording paused",
|
||||
"api": "events",
|
||||
"name": "RecordingPaused",
|
||||
"category": "recording",
|
||||
"since": "4.7.0",
|
||||
"names": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "RecordingPaused"
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "recording"
|
||||
}
|
||||
],
|
||||
"sinces": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "4.7.0"
|
||||
}
|
||||
],
|
||||
"heading": {
|
||||
"level": 2,
|
||||
"text": "RecordingPaused"
|
||||
},
|
||||
"lead": "",
|
||||
"type": "class",
|
||||
"examples": []
|
||||
},
|
||||
{
|
||||
"subheads": [],
|
||||
"description": "Current recording resumed",
|
||||
"api": "events",
|
||||
"name": "RecordingResumed",
|
||||
"category": "recording",
|
||||
"since": "4.7.0",
|
||||
"names": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "RecordingResumed"
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "recording"
|
||||
}
|
||||
],
|
||||
"sinces": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "4.7.0"
|
||||
}
|
||||
],
|
||||
"heading": {
|
||||
"level": 2,
|
||||
"text": "RecordingResumed"
|
||||
},
|
||||
"lead": "",
|
||||
"type": "class",
|
||||
"examples": []
|
||||
}
|
||||
],
|
||||
"replay buffer": [
|
||||
@ -3575,6 +3641,72 @@
|
||||
"type": "class",
|
||||
"examples": []
|
||||
},
|
||||
{
|
||||
"subheads": [],
|
||||
"description": "Pause the current recording.\nReturns an error if recording is not active or already paused.",
|
||||
"api": "requests",
|
||||
"name": "PauseRecording",
|
||||
"category": "recording",
|
||||
"since": "4.7.0",
|
||||
"names": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "PauseRecording"
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "recording"
|
||||
}
|
||||
],
|
||||
"sinces": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "4.7.0"
|
||||
}
|
||||
],
|
||||
"heading": {
|
||||
"level": 2,
|
||||
"text": "PauseRecording"
|
||||
},
|
||||
"lead": "",
|
||||
"type": "class",
|
||||
"examples": []
|
||||
},
|
||||
{
|
||||
"subheads": [],
|
||||
"description": "Resume/unpause the current recording (if paused).\nReturns an error if recording is not active or not paused.",
|
||||
"api": "requests",
|
||||
"name": "ResumeRecording",
|
||||
"category": "recording",
|
||||
"since": "4.7.0",
|
||||
"names": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "ResumeRecording"
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "recording"
|
||||
}
|
||||
],
|
||||
"sinces": [
|
||||
{
|
||||
"name": "",
|
||||
"description": "4.7.0"
|
||||
}
|
||||
],
|
||||
"heading": {
|
||||
"level": 2,
|
||||
"text": "ResumeRecording"
|
||||
},
|
||||
"lead": "",
|
||||
"type": "class",
|
||||
"examples": []
|
||||
},
|
||||
{
|
||||
"subheads": [],
|
||||
"description": "\n\nPlease note: if `SetRecordingFolder` is called while a recording is\nin progress, the change won't be applied immediately and will be\neffective on the next recording.",
|
||||
|
@ -73,6 +73,8 @@ auth_response = base64_encode(auth_response_hash)
|
||||
+ [RecordingStarted](#recordingstarted)
|
||||
+ [RecordingStopping](#recordingstopping)
|
||||
+ [RecordingStopped](#recordingstopped)
|
||||
+ [RecordingPaused](#recordingpaused)
|
||||
+ [RecordingResumed](#recordingresumed)
|
||||
* [Replay Buffer](#replay-buffer)
|
||||
+ [ReplayStarting](#replaystarting)
|
||||
+ [ReplayStarted](#replaystarted)
|
||||
@ -128,6 +130,8 @@ auth_response = base64_encode(auth_response_hash)
|
||||
+ [StartStopRecording](#startstoprecording)
|
||||
+ [StartRecording](#startrecording)
|
||||
+ [StopRecording](#stoprecording)
|
||||
+ [PauseRecording](#pauserecording)
|
||||
+ [ResumeRecording](#resumerecording)
|
||||
+ [SetRecordingFolder](#setrecordingfolder)
|
||||
+ [GetRecordingFolder](#getrecordingfolder)
|
||||
* [Replay Buffer](#replay-buffer-1)
|
||||
@ -608,6 +612,32 @@ _No additional response items._
|
||||
|
||||
---
|
||||
|
||||
### RecordingPaused
|
||||
|
||||
|
||||
- Added in v4.7.0
|
||||
|
||||
Current recording paused
|
||||
|
||||
**Response Items:**
|
||||
|
||||
_No additional response items._
|
||||
|
||||
---
|
||||
|
||||
### RecordingResumed
|
||||
|
||||
|
||||
- Added in v4.7.0
|
||||
|
||||
Current recording resumed
|
||||
|
||||
**Response Items:**
|
||||
|
||||
_No additional response items._
|
||||
|
||||
---
|
||||
|
||||
## Replay Buffer
|
||||
|
||||
### ReplayStarting
|
||||
@ -1486,6 +1516,42 @@ _No additional response items._
|
||||
|
||||
---
|
||||
|
||||
### PauseRecording
|
||||
|
||||
|
||||
- Added in v4.7.0
|
||||
|
||||
Pause the current recording.
|
||||
Returns an error if recording is not active or already paused.
|
||||
|
||||
**Request Fields:**
|
||||
|
||||
_No specified parameters._
|
||||
|
||||
**Response Items:**
|
||||
|
||||
_No additional response items._
|
||||
|
||||
---
|
||||
|
||||
### ResumeRecording
|
||||
|
||||
|
||||
- Added in v4.7.0
|
||||
|
||||
Resume/unpause the current recording (if paused).
|
||||
Returns an error if recording is not active or not paused.
|
||||
|
||||
**Request Fields:**
|
||||
|
||||
_No specified parameters._
|
||||
|
||||
**Response Items:**
|
||||
|
||||
_No additional response items._
|
||||
|
||||
---
|
||||
|
||||
### SetRecordingFolder
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user