From 7c88bfb0d27d438e2c7a5e86b351a27ab440ff74 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 29 Dec 2022 15:14:17 -0700 Subject: [PATCH] Adjust args --- frigate/restream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/restream.py b/frigate/restream.py index 493b7cc10..6642fbeb4 100644 --- a/frigate/restream.py +++ b/frigate/restream.py @@ -47,7 +47,7 @@ class RestreamApi: if self.config.restream.birdseye: self.relays[ "birdseye" - ] = f"exec:ffmpeg -hide_banner -f rawvideo -pix_fmt yuv420p -s {self.config.birdseye.width}x{self.config.birdseye.height} -r 10 -i {BIRDSEYE_PIPE} {' '.join(parse_preset_hardware_acceleration_encode(self.config.ffmpeg.hwaccel_args))} -rtsp_transport tcp -f rtsp {{output}}" + ] = f"exec:ffmpeg -hide_banner -f rawvideo -pix_fmt yuv420p -video_size {self.config.birdseye.width}x{self.config.birdseye.height} -r 10 -i {BIRDSEYE_PIPE} {' '.join(parse_preset_hardware_acceleration_encode(self.config.ffmpeg.hwaccel_args))} -rtsp_transport tcp -f rtsp {{output}}" for name, path in self.relays.items(): params = {"src": path, "name": name}