From 483653ff36a016d838610b2c0c0bf736fa451f11 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 29 Nov 2023 15:59:19 -0800 Subject: [PATCH] Enable birdseye view --- frigate-container.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frigate-container.nix b/frigate-container.nix index 989dce5..7e91023 100644 --- a/frigate-container.nix +++ b/frigate-container.nix @@ -27,6 +27,7 @@ let ffmpeg.hwaccel_args = optional (cfg.hwaccel != null) cfg.hwaccel; cameras = mapAttrs' (_: camOpts: nameValuePair camOpts.name { + birdseye.mode = "objects"; ffmpeg.inputs = [ { path = camOpts.streams.high; @@ -54,6 +55,10 @@ let objects = cfg.retention.objects; }; }; + birdseye = { + enabled = true; + mode = "continuous"; + }; }; in pkgs.writeText "frigate.yaml" content;