Skip to content

Commit f374079

Browse files
authored
Update README.md
1 parent 221eb86 commit f374079

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,40 @@ Modify the RTMP section in config.json like this to connect to a node-media-serv
144144
}
145145
```
146146

147+
## Using nimble SRT instead of nginx rtmp
148+
149+
Nimble must have [API access enabled](https://wmspanel.com/nimble/api) and be configured as a SRT receiver - see ["Set up receiving of SRT"](https://blog.wmspanel.com/2017/07/setup-srt-secure-reliable-transport-nimble-streamer.html) and have an outgoing stream ("Add outgoing stream" on same page)
150+
151+
Modify the RTMP section in config.json to this:
152+
153+
```
154+
"rtmp": {
155+
"server": "nimble",
156+
"stats": "http://nimble:8082",
157+
"id": "0.0.0.0:1234",
158+
"application": "live",
159+
"key": "srt"
160+
},
161+
```
162+
163+
- `stats`: URL to nimble API
164+
- `id`: UDP listener ID (Usually IP:Port)
165+
- `application`: Outgoing stream "Application Name"
166+
- `key`: Outgoing stream "Stream Name"
167+
168+
---
169+
170+
Switches on low bitrate or high RTT (high RTT seems to be a more accurate way of determining if the stream is bad with this)
171+
172+
You can change the high RTT trigger value inside config.json:
173+
174+
```
175+
"obs": {
176+
...
177+
"highRttTrigger": 2500,
178+
},
179+
```
180+
147181
## Help it won't change scenes
148182

149183
It will only change scenes when OBS is set on a scene that's in the config.

0 commit comments

Comments
 (0)