From 0c9f3f99c8882451c7e9217415862ac445fdd41b Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 29 Jan 2023 12:45:22 -0700 Subject: [PATCH] Remove duplicate docs --- docs/docs/configuration/restream.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/docs/configuration/restream.md b/docs/docs/configuration/restream.md index 82c8dfcd2..cbe7706a1 100644 --- a/docs/docs/configuration/restream.md +++ b/docs/docs/configuration/restream.md @@ -133,15 +133,3 @@ go2rtc: streams: stream1: exec:ffmpeg -hide_banner -re -stream_loop -1 -i /media/BigBuckBunny.mp4 -c copy -rtsp_transport tcp -f rtsp {{output}} ``` - -## Go2rtc Exec - -Go2rtc offers the ability to [run a full command with exec](https://github.com/AlexxIT/go2rtc#source-exec) and calls for `{output}` at the end of the stream. Due to frigate's handling of templates, the output will need to be passed as `{{output}}`. - -ex: - -```yaml -go2rtc: - streams: - test: exec:ffmpeg -hide_banner -re -stream_loop -1 -i /media/BigBuckBunny.mp4 -c copy -rtsp_transport tcp -f rtsp {{output}} -```