From bc4e0328302b48c273cbb554378c32851bd02ef9 Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Sun, 15 Jan 2023 11:13:38 +0300 Subject: [PATCH] Update readme --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4d9dd8b..d44fc463 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,8 @@ Available modules: - [hass](#module-hass) - Home Assistant integration - [log](#module-log) - logs config +Full default config [example](https://github.com/AlexxIT/go2rtc/wiki/Configuration). + ### Module: Streams **go2rtc** support different stream source types. You can config one or multiple links of any type as stream source. @@ -538,8 +540,13 @@ PS. Default Home Assistant lovelace cards don't support 2-way audio. You can use Provides several features: 1. MSE stream (fMP4 over WebSocket) -2. Camera snapshots in MP4 format (single frame), can be sent to [Telegram](https://www.telegram.org/) -3. MP4 "file stream" - bad format for streaming because of high latency, doesn't work in Safari +2. Camera snapshots in MP4 format (single frame), can be sent to [Telegram](https://github.com/AlexxIT/go2rtc/wiki/Snapshot-to-Telegram) +3. MP4 "file stream" - bad format for streaming because of high start delay, doesn't work in Safari + +API examples: + +- MP4 stream: `http://192.168.1.123:1984/api/stream.mp4?src=camera1` +- MP4 snapshot: `http://192.168.1.123:1984/api/frame.mp4?src=camera1` ### Module: MJPEG @@ -675,6 +682,10 @@ streams: - `ffplay -fflags nobuffer -flags low_delay "rtsp://192.168.1.123:8554/camera1"` - VLC > Preferences > Input / Codecs > Default Caching Level: Lowest Latency +**Snapshots to Telegram** + +[read more](https://github.com/AlexxIT/go2rtc/wiki/Snapshot-to-Telegram) + ## FAQ **Q. What's the difference between go2rtc, WebRTC Camera and RTSPtoWebRTC?**