Files
frigate/docs/docs/configuration/birdseye.md
T
Josh Hawkins 2395a82639 Refactor birdseye activity modes as a list and add alerts/detections (#24012)
* backend

* tests

* frontend and i18n

* e2e test schema

* docs
2026-08-22 11:40:42 -05:00

7.4 KiB

Birdseye

import ConfigTabs from "@site/src/components/ConfigTabs"; import TabItem from "@theme/TabItem"; import NavPath from "@site/src/components/NavPath";

In addition to Frigate's Live camera dashboard, Birdseye allows a portable heads-up view of your cameras to see what is going on around your property / space without having to watch all cameras that may have nothing happening. Birdseye allows specific modes that intelligently show and disappear based on what you care about.

Birdseye can be viewed by adding the "Birdseye" camera to a Camera Group in the Web UI. Add a Camera Group by pressing the pencil icon in the sidebar on the Live page, and choose "Birdseye" as one of the cameras.

Birdseye can also be used in Home Assistant dashboards, cast to media devices, etc.

:::note

Each camera tile in Birdseye is composed from the frames of the stream assigned the detect role, so a camera's image quality in Birdseye matches its detect stream resolution rather than a higher-resolution recording stream. If a camera looks low quality in Birdseye, increasing the detect width and height (or assigning the detect role to a higher-resolution stream) is what affects it. See setting up camera inputs for how roles are assigned.

:::

Birdseye Behavior

Birdseye Activity Types

Birdseye offers independent activity types that control when cameras are shown. Multiple activity types can be listed together.

  • continuous: The camera is always included
  • motion: The camera is included when motion was detected within the last 30 seconds
  • all_objects: The camera is included when a tracked object is present, active or stationary
  • alerts: The camera is included while an alert review item is in progress
  • detections: The camera is included while a detection review item is in progress

alerts and detections follow the review item's own lifetime, so the camera is removed as soon as the review item ends. Which objects qualify for each is set in review configuration.

Custom Birdseye Icon

A custom icon can be added to the birdseye background by providing a 180x180 image named custom.png inside of the Frigate media folder. The file must be a png with the icon as transparent, any non-transparent pixels will be white when displayed in the birdseye view.

Birdseye view override at camera level

To include a camera in Birdseye view only for specific circumstances, or exclude it entirely, configure Birdseye at the camera level.

Global settings: Navigate to to configure the default Birdseye behavior for all cameras.

Per-camera overrides: Navigate to to override the activity types or disable Birdseye for a specific camera.

Field Description
Enable Birdseye Whether this camera appears in Birdseye view
Activity types Conditions that determine when to show the camera
# Include all cameras by default in Birdseye view
birdseye:
  enabled: True
  modes:
    - continuous

cameras:
  front:
    # Only include the "front" camera in Birdseye view when an alert is in progress
    birdseye:
      modes:
        - alerts
  back:
    # Exclude the "back" camera from Birdseye view
    birdseye:
      enabled: False

Birdseye Inactivity

By default birdseye shows all cameras that have had the configured activity in the last 30 seconds. This threshold can be configured, and applies to the motion and all_objects activity types only.

Navigate to .

Field Description
Inactivity threshold Seconds of inactivity before a camera is hidden from Birdseye (default: 30)
birdseye:
  enabled: True
  # highlight-next-line
  inactivity_threshold: 15

Birdseye Layout

Birdseye Dimensions

The resolution and aspect ratio of birdseye can be configured. Resolution will increase the quality but does not affect the layout. Changing the aspect ratio of birdseye does affect how cameras are laid out.

Navigate to .

Field Description
Width Birdseye output width in pixels (default: 1280)
Height Birdseye output height in pixels (default: 720)
birdseye:
  enabled: True
  width: 1280
  height: 720

Sorting cameras in the Birdseye view

It is possible to override the order of cameras that are being shown in the Birdseye view. The order is set at the camera level (when using YAML).

Navigate to and in the Camera order field, use the drag handle next to each camera name to control the display order.

# Include all cameras by default in Birdseye view
birdseye:
  enabled: True
  modes:
    - continuous

cameras:
  front:
    birdseye:
      # highlight-next-line
      order: 1
  back:
    birdseye:
      # highlight-next-line
      order: 2

Note: Cameras are sorted by default using their name to ensure a constant view inside Birdseye.

Birdseye Cameras

It is possible to limit the number of cameras shown on birdseye at one time. When this is enabled, birdseye will show the cameras with most recent activity. There is a cooldown to ensure that cameras do not switch too frequently.

Navigate to .

Field Description
Layout > Max cameras Maximum number of cameras shown at once (e.g., 1 for only the most active camera)
birdseye:
  enabled: True
  layout:
    max_cameras: 1

Birdseye Scaling

By default birdseye tries to fit 2 cameras in each row and then double in size until a suitable layout is found. The scaling can be configured with a value between 1.0 and 5.0 depending on use case.

Navigate to .

Field Description
Layout > Scaling factor Camera scaling factor between 1.0 and 5.0 (default: 2.0)
birdseye:
  enabled: True
  layout:
    scaling_factor: 3.0