From 3c04d0825c508da94cdc9f6f576d01d7f60bdf65 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 27 Oct 2022 06:45:47 -0600 Subject: [PATCH] Update docs to be more clear --- docs/docs/configuration/live.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/configuration/live.md b/docs/docs/configuration/live.md index f47a8aa4c..7a254998c 100644 --- a/docs/docs/configuration/live.md +++ b/docs/docs/configuration/live.md @@ -15,19 +15,19 @@ Live view options can be selected while viewing the live stream. The options are | mp4 | high | native | native | not yet | yes | none | | webrtc | low | native | native | yes (depends on browser) | yes | requires extra config | -### webRTC extra configuration +### webRTC extra configuration: -webRTC works by creating a websocket connection on extra ports. Requirements for webRTC to work: +webRTC works by creating a websocket connection on extra ports. One of the following is requried 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: - * Port `8555` is port forwarded 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 webrtc: listen: ":8555" candidates: - - ip.ad.dr.ess:8555 + - :8555 # <--- enter frigate host IP here - stun:8555 ```