Capitalize the Frigate word (#5044)

This commit is contained in:
Felipe Santos
2023-01-13 07:18:15 -06:00
committed by GitHub
parent cf2466c8c1
commit 95596b39fd
23 changed files with 41 additions and 41 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ Live view options can be selected while viewing the live stream. The options are
webRTC works by creating a websocket connection on extra ports. One of the following is required for webRTC to work:
* Frigate is run with `network_mode: host` to support automatic UDP port pass through locally and remotely. See https://github.com/AlexxIT/go2rtc#module-webrtc for more details
* Frigate is run with `network_mode: bridge` and has:
* Router setup to forward port `8555` to port `8555` on the frigate device.
* Router setup to forward port `8555` to port `8555` on the Frigate device.
* For local webRTC, you will need to create your own go2rtc config:
```yaml
@@ -30,11 +30,11 @@ log:
webrtc:
listen: ":8555"
candidates:
- <frigate host ip address>:8555 # <--- enter frigate host IP here
- <Frigate host ip address>:8555 # <--- enter Frigate host IP here
- stun:8555
```
and pass that config to frigate via docker or `frigate-go2rtc.yaml` for addon users:
and pass that config to Frigate via docker or `frigate-go2rtc.yaml` for addon users:
See https://github.com/AlexxIT/go2rtc#module-webrtc for more details