Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
c5db9d1f88 | |||
8de69d7c40 |
9
README.md
Normal file
9
README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
StreamDeck OBS Replay
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Installation
|
||||||
|
------------
|
||||||
|
|
||||||
|
Install [obs-websocket](https://github.com/Palakis/obs-websocket) and configure
|
||||||
|
|
||||||
|
Add plugin to Stream Deck (double click) and configure your icons with the host, port (default: 4444) and password (if configured).
|
@ -37,12 +37,12 @@
|
|||||||
"Author": "Meow.tf",
|
"Author": "Meow.tf",
|
||||||
"Category": "OBS Replay",
|
"Category": "OBS Replay",
|
||||||
"CodePathWin": "replay.exe",
|
"CodePathWin": "replay.exe",
|
||||||
"Description": "Control OBS' Replays using StreamDeck.",
|
"Description": "Control OBS' Replays using StreamDeck and obs-websocket",
|
||||||
"Name": "OBS Replay",
|
"Name": "OBS Replay",
|
||||||
"Icon": "images/pluginIcon",
|
"Icon": "images/pluginIcon",
|
||||||
"CategoryIcon": "images/pluginIcon",
|
"CategoryIcon": "images/pluginIcon",
|
||||||
"URL": "https://streamdeck.meow.tf/obsreplay",
|
"URL": "https://streamdeck.meow.tf/obsreplay",
|
||||||
"Version": "1.0.0",
|
"Version": "1.0.1",
|
||||||
"SDKVersion": 2,
|
"SDKVersion": 2,
|
||||||
"OS": [
|
"OS": [
|
||||||
{
|
{
|
||||||
|
@ -52,6 +52,15 @@ func replaySave(action, context string, payload *fastjson.Value, deviceId string
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stateMutex.RLock()
|
||||||
|
state, exists := cachedStates[context]
|
||||||
|
stateMutex.RUnlock()
|
||||||
|
|
||||||
|
if exists && state == 0 {
|
||||||
|
sdk.ShowAlert(context)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
req := obsws.NewSaveReplayBufferRequest()
|
req := obsws.NewSaveReplayBufferRequest()
|
||||||
|
|
||||||
if err := req.Send(c); err != nil {
|
if err := req.Send(c); err != nil {
|
||||||
|
Reference in New Issue
Block a user