Files
blakeblackshear.frigate/frigate
ryzendigo 27b7ef0a7a fix: mismatched time sources break birdseye idle heartbeat (#22466)
The idle heartbeat check in BirdsEyeOutputProcess.update() compares
time.monotonic() (seconds since an arbitrary point, typically boot)
against last_output_time which is set from datetime.datetime.now().timestamp()
(Unix epoch seconds).

These are completely different time bases. The subtraction produces a
large negative number, so the idle heartbeat condition can never be
satisfied. This means birdseye stops sending frames when all cameras
go idle, instead of continuing at the configured idle_heartbeat_fps.

Use datetime.datetime.now().timestamp() consistently for both the
heartbeat check and the output time tracking.
2026-04-30 12:16:49 -06:00
..
2026-04-30 12:53:34 -05:00
2026-04-23 12:27:49 -06:00
2026-04-28 08:54:09 -06:00
2026-03-26 12:54:12 -06:00
2026-04-29 16:20:19 -06:00
2026-04-28 08:54:09 -06:00
2026-04-30 12:53:34 -05:00
2026-04-18 07:10:50 -06:00
2026-04-23 12:27:49 -06:00
2026-04-29 16:20:19 -06:00
2026-04-30 12:53:34 -05:00
2026-03-26 13:47:24 -05:00
2026-02-03 13:29:52 -06:00
2026-03-26 12:54:12 -06:00
2026-04-29 16:20:19 -06:00