[Bug]: preview could not convert to float #12392
-
Describe the problem you are having/dev/shm will fill up causing frigate to become non-responsive. I have increased shm's size to 8 GB and that just delays the problem. might be similar to Support: Fatal Python error: Bus error #6832 but not the same. #6832 solution is to set the correct size of shm. According to the docs calc I should need 300 MB in the shm. I have been increasing shm over time to see if the issue looks like a leak or capacity problem. This behaviour does not happen with any of the latest 0.13 release. Steps to reproduceThere is no systematic way to reproduce. I have had a number of occasions where frigate will run for days and then get into the unresponsive state or it can happen in a couple of hours. There seems to be no pattern to the trigger. In this particular example for the log file, the condition happened right at startup. Version0.14.0-4e5a6eb (0.14 beta 3) Frigate config file########################################################################################
# Environment Variables
# Optional: set environment variables
########################################################################################
#environment_vars:
# EXAMPLE_VAR: value
# Cameras
#
# a0:ff:0c:df:b3:3f 10.1.5.1 cam-frontdoor Hikvision DS-2CD2T87G2P-LSU/SL [ dual sensor, panoramic]
# d4:e8:53:97:33:a0 10.1.5.2 cam-porch Hikvision DS-2CD2043G2-IU
# 9c:8e:cd:2c:dd:44 10.1.5.3 cam-driveway Amcrest IP5M-B1186EW-2.8mm
# a0:ff:0c:df:b3:81 10.1.5.4 cam-garage Hikvision DS-2CD2T87G2P-LSU/SL [ dual sensor, panoramic]
#
# ===============================================================================
#
# Archive (not in use)
#
# home
# 00:66:52:d1:63:de 10.1.5.5 camera-upstairs
# ec:71:db:d8:25:89 10.1.5.6 cam-spare01 Reolink RLC-510A ip camera (Front door)
# ec:71:db:79:d8:2b 10.1.5.2 cam-spare02 Reolink RLC-510A, H264
# cottage
# a0:ff:0c:df:b3:c8 10.1.5.8 hikvision-3 Hikvision DS-2CD2T87G2P-LSU/SL
# a0:ff:0c:df:b3:7e 10.1.5.9 hikvision-4 Hikvision DS-2CD2T87G2P-LSU/SL
########################################################################################
# MQTT
########################################################################################
mqtt:
# Required: host name
host: renfrew-unraid.hollebone.ca
# Optional: port (default: shown below)
port: 1883
# Optional: topic prefix (default: shown below)
# WARNING: must be unique if you are running multiple instances
topic_prefix: frigate
# Optional: client id (default: shown below)
# WARNING: must be unique if you are running multiple instances
client_id: frigate
# Optional: user
user: mqttbroker
# Optional: password
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}.
# eg. password: '{FRIGATE_MQTT_PASSWORD}'
password: '{FRIGATE_MQTT_PASSWORD}'
# Optional: tls_ca_certs for enabling TLS using self-signed certs (default: None)
#tls_ca_certs: /path/to/ca.crt
# Optional: tls_client_cert and tls_client key in order to use self-signed client
# certificates (default: None)
# NOTE: certificate must not be password-protected
# do not set user and password when using a client certificate
#tls_client_cert: /path/to/client.crt
#tls_client_key: /path/to/client.key
# Optional: tls_insecure (true/false) for enabling TLS verification of
# the server hostname in the server certificate (default: None)
#tls_insecure: false
# Optional: interval in seconds for publishing stats (default: shown below)
stats_interval: 60
########################################################################################
# Detectors
########################################################################################
#
# Required: name of the detector
# guessing to have one detector per stream available
#
detectors:
# only use cpu detectors if TPU (coral) is not available, cpu detectors are ~100 times slower
#
# cpu1:
# type: cpu
# cpu2:
# type: cpu
# cpu3:
# type: cpu
# cpu4:
# type: cpu
# cpu5:
# type: cpu
# cpu6:
# type: cpu
coral:
# note: add /dev/apex_0 as the TPU Mapping in the docker container
# Required: type of the detector
# Valid values are 'edgetpu' (requires device property below) and 'cpu'.
type: edgetpu
# Optional: device name as defined here: https://coral.ai/docs/edgetpu/multiple-edgetpu/#using-the-tensorflow-lite-python-api
# ":<N>" : Use N-th Edge TPU
# "usb" : Use any USB Edge TPU
# "usb:<N>" : Use N-th USB Edge TPU
# "pci" : Use any PCIe Edge TPU
# "pci:<N>" : Use N-th PCIe Edge TPU
device: pci
# Optional: num_threads value passed to the tflite.Interpreter (default: shown below)
# This value is only used for CPU types
#num_threads: 3
#
# Nvidia
# tensorrt:
# type: tensorrt
# device: 0 #This is the default, select the first GPU
########################################################################################
# TLS - see https://deploy-preview-11419--frigate-docs.netlify.app/configuration/tls/
########################################################################################
#
#
# Optional: TLS configuration, added as of v0.14
tls:
# Optional: Enable TLS for port 8080 (default: shown below)
enabled: true
########################################################################################
# Authentication
########################################################################################
#
#
# Optional: Authentication configuration, added as of v0.14
#auth:
# # Optional: Authentication mode (default: shown below)
# # Valid values are: native, proxy
# mode: native
# # Optional: Reset the admin user password on startup (default: shown below)
# # New password is printed in the logs
# reset_admin_password: False
# # Optional: Cookie to store the JWT token for native auth (default: shown below)
# cookie_name: frigate_token
# # Optional: Set secure flag on cookie. (default: shown below)
# # NOTE: This should be set to True if you are using TLS
# cookie_secure: True
# # Optional: Session length in seconds (default: shown below)
# session_length: 86400 # 24 hours
# # Optional: Refresh time in seconds (default: shown below)
# # When the session is going to expire in less time than this setting,
# # it will be refreshed back to the session_length.
# refresh_time: 43200 # 12 hours
# # Optional: Mapping for headers from upstream proxies. Only used in proxy auth mode.
# # NOTE: Many authentication proxies pass a header downstream with the authenticated
# # user name. Not all values are supported. It must be a whitelisted header.
# # See the docs for more info.
# header_map:
# user: x-forwarded-user
# # Optional: Rate limiting for login failures to help prevent brute force
# # login attacks (default: shown below)
# # See the docs for more information on valid values
# failed_login_rate_limit: None
# # Optional: Trusted proxies for determining IP address to rate limit
# # NOTE: This is only used for rate limiting login attempts and does not bypass
# # authentication in any way
# trusted_proxies: []
# # Optional: Url for logging out a user. This only needs to be set if you are using
# # proxy mode.
# logout_url: /api/logout
# # Optional: Number of hashing iterations for user passwords
# # As of Feb 2023, OWASP recommends 600000 iterations for PBKDF2-SHA256
# # NOTE: changing this value will not automatically update password hashes, you
# # will need to change each user password for it to apply
# hash_iterations: 600000
########################################################################################
# Model
########################################################################################
#
#
# Optional: model modifications
model:
# Optional: path to the model (default: automatic based on detector)
path: plus://a9e1b80c30611a69b2b14bd666817cf3 # 2024-06(Jun)-07 13 - 1391 images
#path: plus://f0412a87f70d2e829bc8c581d4a13b9a # 2024-05(May)-30
#
# path: /edgetpu_model.tflite
# # Optional: path to the labelmap (default: shown below)
# labelmap_path: /labelmap.txt
# # Required: Object detection model input width (default: shown below)
# width: 320
# # Required: Object detection model input height (default: shown below)
# height: 320
# # Optional: Label name modifications. These are merged into the standard labelmap.
# labelmap:
# 2: vehicle
#
# #####################
# Nvidia/TensorRT Model
# #####################
# path: /config/model_cache/tensorrt/yolov7-640.trt
#
# Optional: Object detection model input tensor format
# Valid values are nhwc or nchw (default: shown below)
# input_tensor: nchw
#
# Optional: Object detection model input colorspace
# Valid values are rgb, bgr, or yuv. (default: shown below)
# input_pixel_format: rgb
#
# Nvidia image sizing
# width: 640
# height: 480
#
# #################
# OpenVINO detector
# #################
#
# Optional: Object detection model type, currently only used with the OpenVINO detector
# Valid values are ssd, yolox, yolonas (default: shown below)
# model_type: ssd
########################################################################################
# Database
########################################################################################
#
#
# Optional: Database configuration
database:
# The path to store the SQLite DB (default: shown below)
# moved to db to support docker passing in the value from docker compose/unraid parameter
path: /db/frigate.db
# path: /media/frigate/frigate.db
########################################################################################
# Logging
########################################################################################
# Available log levels are: debug, info, warning, error, critical
# other logging options
# frigate.app
# frigate.mqtt
# frigate.edgetpu
# frigate.zeroconf
# detector.<detector_name>
# watchdog.<camera_name>
# ffmpeg.<camera_name>.<sorted_roles> # NOTE: All FFmpeg logs are sent as error level.
#
#
logger:
default: info
# Optional: Component specific logger overrides
logs:
frigate.video: debug
frigate.event: info
frigate.edgetpu: info
frigate.app: debug
frigate.record: info
ffmpeg.cam-frontdoor.detect: debug
ffmpeg.frontdoor.record: info
########################################################################################
# birdseye
########################################################################################
#
# Optional: birdseye configuration
# NOTE: Can (enabled, mode) be overridden at the camera level
#
birdseye:
# Optional: Enable birdseye view (default: shown below)
enabled: true
# Optional: Width of the output resolution (default: shown below)
# width: 1280 (default)
width: 1280
#width: 1024
# Optional: Height of the output resolution (default: shown below)
#height: 720 (default)
height: 720
#height: 576
# Optional: Encoding quality of the mpeg1 feed (default: shown below)
# 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
# quality: 8 (default)
quality: 1
# Optional: Mode of the view. Available options are: objects, motion, and continuous
# objects - cameras are included if they have had a tracked object within the last 30 seconds
# motion - cameras are included if motion was detected in the last 30 seconds
# continuous - all cameras are included always
mode: continuous
########################################################################################
# Global Audio
########################################################################################
#
# Optional: Audio Events Configuration
# NOTE: Can be overridden at the camera level
audio:
# # Optional: Enable audio events (default: shown below)
enabled: false
# # Optional: Configure the amount of seconds without detected audio to end the event (default: shown below)
# #max_not_heard: 30
# # Optional: Configure the min rms volume required to run audio detection (default: shown below)
# # As a rule of thumb:
# # - 200 - high sensitivity
# # - 500 - medium sensitivity
# # - 1000 - low sensitivity
# #min_volume: 500
# # Optional: Types of audio to listen for (default: shown below)
# #listen:
# # - bark
# # - fire_alarm
# # - scream
# # - speech
# # - yell
# # Optional: Filters to configure detection.
# #filters:
# # Label that matches label in listen config.
# # speech:
# # Minimum score that triggers an audio event (default: shown below)
# # threshold: 0.8
########################################################################################
# Global ffmpeg
########################################################################################
#
# Optional: ffmpeg configuration
# NOTE: Can be overridden at the camera level
ffmpeg:
# see https://ffmpeg.org/ffmpeg-formats.html for details on specific options
#
# https://docs.frigate.video/configuration/ffmpeg_presets/#hwaccel-presets
#
# preset-rpi-64-h264 64 bit Rpi with h264 stream
# preset-rpi-64-h265 64 bit Rpi with h265 stream
# preset-vaapi Intel & AMD VAAPI Check hwaccel docs to ensure correct driver is chosen
# preset-intel-qsv-h264 Intel QSV with h264 stream If issues occur recommend using vaapi preset instead
# preset-intel-qsv-h265 Intel QSV with h265 stream If issues occur recommend using vaapi preset instead
# preset-nvidia-h264 Nvidia GPU with h264 stream
# preset-nvidia-h265 Nvidia GPU with h265 stream
# preset-nvidia-mjpeg Nvidia GPU with mjpeg stream Recommend restreaming mjpeg and using nvidia-h264
# preset-jetson-h264 Nvidia Jetson with h264 stream
# preset-jetson-h265 Nvidia Jetson with h265 stream
# preset-rk-h264 Rockchip MPP with h264 stream Use image with *-rk suffix and privileged mode
# preset-rk-h265 Rockchip MPP with h265 stream Use image with *-rk suffix and privileged mode
#
# Optional: global ffmpeg args (default: shown below)
## global_args: -hide_banner -loglevel warning
# Optional: global hwaccel args (default: shown below)
# NOTE: See hardware acceleration docs for your specific device
hwaccel_args: preset-nvidia-h264
# Optional: global input args (default: shown below)
input_args: preset-rtsp-generic
# preset-http-jpeg-generic HTTP Live Jpeg Recommend restreaming live jpeg instead
# preset-http-mjpeg-generic HTTP Mjpeg Stream Recommend restreaming mjpeg stream instead
# preset-http-reolink Reolink HTTP-FLV Stream Only for reolink http, not when restreaming as rtsp
# preset-rtmp-generic RTMP Stream
# preset-rtsp-generic RTSP Stream This is the default when nothing is specified
# preset-rtsp-restream RTSP Stream from restream Use for rtsp restream as source for frigate
# preset-rtsp-restream-low-latency RTSP Stream from restream Use for rtsp restream as source for frigate to lower latency, may cause issues with some cameras
# preset-rtsp-udp RTSP Stream via UDP Use when camera is UDP only
# preset-rtsp-blue-iris Blue Iris RTSP Stream Use when consuming a stream from Blue Iris
#
## input_args: -avoid_negative_ts make_zero -fflags +nobuffer+genpts+discardcorrupt -rtsp_transport tcp -timeout 5000000 -use_wallclock_as_timestamps 1
# -avoid_negative_ts make_zero
# -flags low_delay
# -strict experimental
# -fflags +genpts+discardcorrupt
# -rtsp_transport tcp
# -timeout 5000000
# -use_wallclock_as_timestamps 1
# Optional: global output args
output_args:
record: preset-record-generic
# preset-record-generic Record WITHOUT audio This is the default when nothing is specified
# preset-record-generic-audio-aac Record WITH aac audio Use this to enable audio in recordings
# preset-record-generic-audio-copy Record WITH original audio Use this to enable audio in recordings
##output_args:
# Optional: output args for detect streams (default: shown below)
## detect: -f rawvideo # needs to be set at the camera level -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
## record: -f segment -segment_time 60 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
# -f segment: split files according to default, unless overridden by additional flags
# -segment_time: Specify a list of split points. times contains a list of comma separated duration specifications, in increasing order. In seconds
# -segment_format: Override the inner container format, by default it is guessed by the filename extension
# codec type mp4 (native to h.264)
# -reset_timestamps: Reset timestamps at the beginning of each segment, so that each segment will start with near-zero timestamps
# 1 or 0 (default)
# -strftime: Use the strftime function to define the name of the new segments to write. If this is selected, the output segment name must contain a strftime function template.
# 1 or 0 (default)
# -crf: constant_rate_factor
# -an: no sound
# -c copy: copy all video/audio/subtitles streams
# -c copy:an, copy stream to output with NO sound,
# -c:a copy re-encodes the audio stream using the same audio codecc
# -c:v copy re-encodes the audio stream using the same video codecc
# "-copyts" flag means it will copy timestamps
# "-copytb" copy timebase
#
# -pix_fmt yuv420p: The pixel format for “YUV” colour space with 4:2:0 chroma subsampling and planar colour alignment is chosen for best compatibility.
# Optional: output args for rtmp streams (default: shown below)
##rtmp: -c copy -f flv
########################################################################################
# Global Detect
########################################################################################
#
# Optional: Detect configuration
# NOTE: Can be overridden at the camera level
detect:
# Normally set detect on the sub/second stream of each camera sized to 640x480
#
# Optional: width of the frame for the input with the detect role (default: shown below)
#width: 640
# Optional: height of the frame for the input with the detect role (default: shown below)
#height: 480
# Optional: desired fps for your camera for the input with the detect role (default: shown below)
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
fps: 5
# Optional: enables detection for the camera (default: True)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate)
max_disappeared: 25
#
# New as of v0.10.0
# Optional: Configuration for stationary object tracking
stationary:
# Optional: Frequency for running detection on stationary objects (default: shown below)
# When set to 0, object detection will never be run on stationary objects. If set to 10,
# it will be run on every 10th frame.
interval: 10
# Optional: Number of frames without a position change for an object to be considered
# stationary (default: 10x the frame rate or 10s)
threshold: 50 # at 10 fps => 5 seconds
# Optional: Define a maximum number of frames for tracking a stationary object (default: not set, track forever)
# This can help with false positives for objects that should only be stationary for a limited amount of time.
# It can also be used to disable stationary object tracking. For example, you may want to set a value for person,
# but leave car at the default.
max_frames:
# Optional: Default for all object types (default: not set, track forever)
default: 3000 # @ 10fps = 300 seconds or 5 minutes
# Optional: Object specific values
objects:
person: 1000
# car: 500
########################################################################################
# Global Objects
########################################################################################
#
# Optional: Object configuration
# NOTE: Can be overridden at the camera level
# https://deploy-preview-11419--frigate-docs.netlify.app/configuration/objects
# Please note:
#car is listed twice because truck has been renamed to car by default. These object types are frequently confused.
#person is the only tracked object by default. See the full configuration reference for an example of expanding the list of tracked objects.
#bicycle
#car
#motorcycle
#airplane
#bus
#train
#car
#boat
#traffic light
#fire hydrant
#street sign
#stop sign
#parking meter
#bench
#bird
#cat
#dog
#horse
#sheep
#cow
#elephant
#bear
#zebra
#giraffe
#hat
#backpack
#umbrella
#shoe
#eye glasses
#handbag
#tie
#suitcase
#frisbee
#skis
#snowboard
#sports ball
#kite
#baseball bat
#baseball glove
#skateboard
#surfboard
#tennis racket
#bottle
#plate
#wine glass
#cup
#fork
#knife
#spoon
#bowl
#banana
#apple
#sandwich
#orange
#broccoli
#carrot
#hot dog
#pizza
#donut
#cake
#chair
#couch
#potted plant
#bed
#mirror
#dining table
#window
#desk
#toilet
#door
#tv
#laptop
#mouse
#remote
#keyboard
#cell phone
#microwave
#oven
#toaster
#sink
#refrigerator
#blender
#book
#clock
#vase
#scissors
#teddy bear
#hair drier
#toothbrush
#hair brush
objects:
# Optional: list of objects to track from labelmap.txt (default: shown below)
track:
- person
- car
- dog
- bicycle
- cat
# Optional: mask to prevent all object types from being detected in certain areas (default: no mask)
# Checks based on the bottom center of the bounding box of the object.
# NOTE: This mask is COMBINED with the object type specific mask below
#mask: 0,0,1000,0,1000,200,0,200
# Optional: filters to reduce false positives for specific object types
#filters:
# person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)
# min_area: 5000
# Optional: maximum width*height of the bounding box for the detected object (default: 24000000)
# max_area: 100000
# Optional: minimum score for the object to initiate tracking (default: shown below)
# min_score: 0.5
# Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
# threshold: 0.7
# Optional: mask to prevent this object type from being detected in certain areas (default: no mask)
# Checks based on the bottom center of the bounding box of the object
# mask: 0,0,1000,0,1000,200,0,200
########################################################################################
# Global Motion
########################################################################################
#
# Optional: Motion configuration
# NOTE: Can be overridden at the camera level
#motion:
# Optional: The threshold passed to cv2.threshold to determine if a pixel is different enough to be counted as motion. (default: shown below)
# Increasing this value will make motion detection less sensitive and decreasing it will make motion detection more sensitive.
# The value should be between 1 and 255.
# threshold: 25
# Optional: Minimum size in pixels in the resized motion image that counts as motion (default: 30)
# Increasing this value will prevent smaller areas of motion from being detected. Decreasing will
# make motion detection more sensitive to smaller moving objects.
# As a rule of thumb:
# - 15 - high sensitivity
# - 30 - medium sensitivity
# - 50 - low sensitivity
# contour_area: 30
# Optional: Alpha value passed to cv2.accumulateWeighted when averaging the motion delta across multiple frames (default: shown below)
# Higher values mean the current frame impacts the delta a lot, and a single raindrop may register as motion.
# Too low and a fast moving person wont be detected as motion.
# delta_alpha: 0.2
# Optional: Alpha value passed to cv2.accumulateWeighted when averaging frames to determine the background (default: shown below)
# Higher values mean the current frame impacts the average a lot, and a new object will be averaged into the background faster.
# Low values will cause things like moving shadows to be detected as motion for longer.
# https://www.geeksforgeeks.org/background-subtraction-in-an-image-using-concept-of-running-average/
# frame_alpha: 0.2
# Optional: Height of the resized motion frame (default: 50)
# This operates as an efficient blur alternative. Higher values will result in more granular motion detection at the expense
# of higher CPU usage. Lower values result in less CPU, but small changes may not register as motion.
# frame_height: 50
# Optional: motion mask
# NOTE: see docs for more detailed info on creating masks
# mask: 0,900,1080,900,1080,1920,0,1920
# Optional: improve contrast (default: shown below)
# Enables dynamic contrast improvement. This should help improve night detections at the cost of making motion detection more sensitive
# for daytime.
# improve_contrast: False
# Optional: Delay when updating camera motion through MQTT from ON -> OFF (default: shown below).
# mqtt_off_delay: 30
########################################################################################
# Global recording
########################################################################################
#
# Optional: Record configuration
# NOTE: Can be overridden at the camera level
record:
# Optional: Enable recording (default: shown below)
enabled: true
# Optional: Number of minutes to wait between cleanup runs (default: shown below)
# This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o
expire_interval: 60
# Optional: Retention settings for recording
retain:
# Optional: Number of days to retain recordings regardless of events (default: shown below)
# NOTE: This should be set to 0 and retention should be defined in events section below
# if you only want to retain recordings of events.
days: 20
# Optional: Mode for retention. Available options are: all, motion, and active_objects
# all - save all recording segments regardless of activity
# motion - save all recordings segments with any detected motion
# active_objects - save all recording segments with active/moving objects
# NOTE: this mode only applies when the days setting above is greater than 0
mode: all
# Optional: Event recording settings
events:
# Optional: Number of seconds before the event to include (default: shown below)
pre_capture: 5
# Optional: Number of seconds after the event to include (default: shown below)
post_capture: 15
# Optional: Objects to save recordings for. (default: all tracked objects)
# objects:
# - person
# - dog
# - bicycle
# Optional: Restrict recordings to objects that entered any of the listed zones (default: no required zones)
# required_zones: []
# Optional: Retention settings for recordings of events
retain:
# Required: Default retention days (default: shown below)
default: 30
# Optional: Mode for retention. (default: shown below)
# all - save all recording segments for events regardless of activity
# motion - save all recordings segments for events with any detected motion
# active_objects - save all recording segments for event with active/moving objects
#
# NOTE: If the retain mode for the camera is more restrictive than the mode configured
# here, the segments will already be gone by the time this mode is applied.
# For example, if the camera retain mode is "motion", the segments without motion are
# never stored, so setting the mode to "all" here won't bring them back.
#mode: motion
# Optional: Per object retention days
objects:
person: 45
dog: 45
car: 45
########################################################################################
# Global snapshots
########################################################################################
#
# Optional: Configuration for the jpg snapshots written to the clips directory for each event
# NOTE: Can be overridden at the camera level
snapshots:
# Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Optional: save a clean PNG copy of the snapshot image (default: shown below)
clean_copy: true
# Optional: print a timestamp on the snapshots (default: shown below)
timestamp: false
# Optional: draw bounding box on the snapshots (default: shown below)
bounding_box: true
# Optional: crop the snapshot (default: shown below)
crop: false
# Optional: height to resize the snapshot to (default: original size)
# height: 384
# Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Camera override for retention settings (default: global values)
retain:
# Required: Default retention days (default: shown below)
default: 30
# Optional: Per object retention days
objects:
person: 60
car: 60
dog: 60
########################################################################################
# Global review
########################################################################################
#
# Optional: Review configuration, added as of 0.14
# NOTE: Can be overridden at the camera level
#review:
# # Optional: alerts configuration
# alerts:
# # Optional: labels that qualify as an alert (default: shown below)
# labels:
# - car
# - person
# # Optional: required zones for an object to be marked as an alert (default: none)
# required_zones:
# - driveway
# # Optional: detections configuration
# detections:
# # Optional: labels that qualify as a detection (default: all labels that are tracked / listened to)
# labels:
# - car
# - person
# # Optional: required zones for an object to be marked as a detection (default: none)
# required_zones:
# - driveway
########################################################################################
# Global RTMP
########################################################################################
#
# Optional: RTMP configuration
# NOTE: Can be overridden at the camera level
#rtmp:
# Optional: Enable the RTMP stream (default: True)
# enabled: false # <-- RTMP should be disabled if your stream is not H264
########################################################################################
# Global Live
########################################################################################
#
# Optional: Live stream configuration for WebUI
# NOTE: Can be overridden at the camera level
#live:
# Optional: Set the height of the live stream. (default: 720)
# This must be less than or equal to the height of the detect stream. Lower resolutions
# reduce bandwidth required for viewing the live stream. Width is computed to match known aspect ratio.
# height: 640
# Optional: Set the encode quality of the live stream (default: shown below)
# 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
# quality: 4
########################################################################################
# Global go2rtc
########################################################################################
#
# Optional: Live stream configuration for WebUI
# NOTE: Can be overridden at the camera level
go2rtc:
# rtsp:
# username: "admin"
# password: "pass"
streams:
cam-frontdoor: # HikVision DS-2CD2T87G2P-LSU/SL
# main stream - h.265 encoding
- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/Channels/101
# sub-stream - h.265 encoding
#- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/Channels/102
cam-porch: # Hikvision DS-2CD2043G2-IU 4mm
# main stream - h.265 encoding
- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.5.0.2:554/Streaming/Channels/101
# sub-stream - h.265 encoding
#- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.5.0.2:554/Streaming/Channels/102
cam-driveway:
# main stream - h.265 encoding
- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif
cam-backyard:
# main stream - h.265 encoding
- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/Channels/101
# sub-stream - h.265 encoding
#- ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/Channels/102
# PCM A-law / G.711 A-law
# cam-upstairs:
# - ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.5:554/11
# - "ffmpeg:upstairs#audio=opus"
#cam-porch: # RioLink 510A
# # clear (main)
# - ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.2:554/
# # fluent (sub-stream)
# # - ffmpeg:rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.2:554/h264Preview_01_sub
webrtc:
listen: :8555
candidates:
- 100.77.78.39:8555 # tailscale
- 10.1.0.3:8555
- stun:8555
########################################################################################
# Global Timestamp
########################################################################################
#
# Optional: in-feed timestamp style configuration
# NOTE: Can be overridden at the camera level
#timestamp_style:
# Optional: Position of the timestamp (default: shown below)
# "tl" (top left), "tr" (top right), "bl" (bottom left), "br" (bottom right)
# position: "tl"
# Optional: Format specifier conform to the Python package "datetime" (default: shown below)
# Additional Examples:
# german: "%d.%m.%Y %H:%M:%S"
# format: "%m/%d/%Y %H:%M:%S"
# Optional: Color of font
# color:
# All Required when color is specified (default: shown below)
# red: 255
# green: 255
# blue: 255
# Optional: Line thickness of font (default: shown below)
# thickness: 2
# Optional: Effect of lettering (default: shown below)
# None (No effect),
# "solid" (solid background in inverse color of font)
# "shadow" (shadow for font)
# effect: None
########################################################################################
# Global Telemetry configuration
########################################################################################
#
telemetry:
# Optional: Enable the latest version outbound check (default: shown below)
# NOTE: If you use the HomeAssistant integration, disabling this will prevent it from reporting new versions
version_check: true
########################################################################################
# Cameras
########################################################################################
cameras:
# ==== start frontdoor camera ====
cam-frontdoor:
# a0:ff:0c:df:b3:3f 10.1.5.1 cam-frontdoor Hikvision DS-2CD2T87G2P-LSU/SL [ dual sensor, panoramic]
#
#
# user: frigate (viewer/user only)
# password: {FRIGATE_RTSP_PASSWORD} (see below but must be url friendly)
# ip address: 10.1.5.1
# http: 80
# https: 443
# rtsp: 554
# WebSocket: 7681
# webSockets: 7682
# Onvif: 8000
# Main: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/101
# Resolution: 5120 x 1440
# Frame Rate: 20 fps
# Bitrate: 16384 kps
# H.265 Profile Base
#
# ffprobe results
#
# Codec: H.265 / HEVC (High Efficiency Video Coding)
# Resolution: 1920x536
# FPS: 20/1
#
# Substream: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/102
# Resolution: 1920 x 536 (or alternatively 920 x 272)
# Frame Rate: 20 fps
# Bitrate: 8192 kps
# H.265 Main Profile
# I Frame Interval: 20
# SVC: AUTO
#
# ffprobe results
#
# Optional: Enable/Disable the camera (default: shown below).
# If disabled: config is used but no live stream and no capture etc.
# Events/Recordings are still viewable.
enabled: true
#
# Required: ffmpeg settings for the camera
ffmpeg:
# Required: A list of input streams for the camera. See documentation for more information.
#
# Camera level settings
#
# Optional: camera specific global args (default: inherit)
##global_args: -hide_banner -loglevel warning
#
# Optional: camera specific hwaccel args (default: inherit)
# nvidia cuda - https://trac.ffmpeg.org/wiki/HWAccelIntro
## hwaccel_args: -hwaccel cuda
hwaccel_args: preset-nvidia-h265
#
# Optional: camera specific input args (default: inherit)
#
# from https://docs.frigate.video/configuration/camera_specific
input_args: preset-rtsp-generic
#
# Optional: camera specific output args (default: inherit)
output_args:
# without audio
record: preset-record-generic
# with audio
#record: preset-record-generic-audio-aac
#
#
# To further improve performance, you can set ffmpeg to skip frames in the output, using the fps filter
# - -filter:v
# - fps=fps=5
# Optional: output args for detect streams (default: shown below)
##detect: -f rawvideo -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
##record: -f segment -segment_time 60 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
# Optional: output args for clips streams (default: shown below)
# clips: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
# Optional: output args for rtmp streams (default: shown below)
##rtmp: -c copy -f flv
#
# ==== Start ffmpeg inputs ====
inputs:
# Required: the path to the stream
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}
#
# DETECT: cam-frontdoor via Sub-Stream
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/Channels/102
# Required: list of roles for this stream. valid values are: detect,record,clips,rtmp
# NOTICE: In addition to assigning the record, clips, and rtmp roles,
# they must also be enabled in the camera config.
roles:
- detect
#
# stream specific settings
#
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
#
# RECORD: cam-frontdoor via Main Stream
#
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.1:554/Streaming/Channels/101
roles:
- record
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
# ==== End ffmpeg Inputs ====
#
#
# Optional: object detection (default: inherit via global)
# Optional: mask to prevent all object types from being detected in certain areas (default: no mask)
# Checks based on the bottom center of the bounding box of the object.
# NOTE: This mask is COMBINED with the object type specific mask below
#mask:
objects:
track:
- person
- car
- bicycle
- dog
- cat
filters:
bicycle:
mask:
- 0.243,0.463,0.247,0.512,0.127,0.815,0,0.906,0,0,0.349,0,0.354,0.187 # left side
- 1,0.933,1,0.485,0.895,0.336,0.729,0.117,0.768,0.504 # right side
car:
mask:
- 0.243,0.463,0.247,0.512,0.127,0.815,0,0.906,0,0,0.349,0,0.354,0.187 # left side
- 1,0.933,1,0.485,0.895,0.336,0.729,0.117,0.768,0.504 # right side
person:
mask:
- 0.243,0.463,0.247,0.512,0.127,0.815,0,0.906,0,0,0.349,0,0.354,0.187 # left side
- 1,0.933,1,0.485,0.895,0.336,0.729,0.117,0.768,0.504 # right side
dog:
mask:
- 0.243,0.463,0.247,0.512,0.127,0.815,0,0.906,0,0,0.349,0,0.354,0.187 # left side
- 1,0.933,1,0.485,0.895,0.336,0.729,0.117,0.768,0.504 # right side
cat:
mask:
- 0.243,0.463,0.247,0.512,0.127,0.815,0,0.906,0,0,0.349,0,0.354,0.187 # left side
- 1,0.933,1,0.485,0.895,0.336,0.729,0.117,0.768,0.504 # right side
#
# Optional: camera level motion config
# Motion masks are used to prevent unwanted types of motion from triggering detection
motion:
mask:
- 0.245,0.486,0.24,0.514,0.201,0.647,0.139,0.816,0.076,0.865,0,0.948,0,0,0.349,0,0.354,0.187
- 0.847,0.654,1,0.94,1,1,0.54,1,0.539,0.723,0.626,0.719
- 1,0.933,1,0.541,0.768,0.504
zones:
frontdoor_driveway:
coordinates: 460,536,570,425,475,270,370,270,0,410,0,536
frontdoor_step:
coordinates: 0.53,0.717,0.53,0.507,0.391,0.507,0.358,0.712
inertia: 3
frontdoor_door:
coordinates: 0.37,0.914,0.526,0.935,0.529,0.728,0.358,0.72
# Optional: Zone level object filters.
# NOTE: The global and camera filters are applied upstream.
#filters:
#person:
#min_area: 5000
#max_area: 100000
#threshold: 0.7
#
# Optional: timeout for highest scoring image before allowing it
# to be replaced by a newer image. (default: shown below)
inertia: 3
best_image_timeout: 30
#
# Optional: Camera level detect settings (inherited from Global: default=true)
detect:
# Optional: enables detection for the camera (default: True)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate)
max_disappeared: 25
# as of 0.91 moved to detect
# Required: width of the frame for the input with the detect role
width: 1920
# Required: height of the frame for the input with the detect role
height: 536
# Optional: desired fps for your camera for the input with the detect role
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
# Frigate will attempt to autodetect if not specified.
fps: 5
#
# Optional: RTMP re-stream configuration (inherited from Global: default=true)
# rtmp:
# Required: Enable the live stream (default: True)
# enabled: True
#
# Optional: 24/7 recording configuration
# record:
# Optional: Enable recording (default: global setting)
# enabled: True
# Optional: Number of days to retain (default: global setting)
# retain_days: 7
#
# Optional: Configuration for the jpg snapshots written to the clips directory for each event
# snapshots:
# Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
# This value can be set via MQTT and will be updated in startup based on retained value
# enabled: True
# Optional: print a timestamp on the snapshots (default: shown below)
# timestamp: False
# Optional: draw bounding box on the snapshots (default: shown below)
# bounding_box: True
# Optional: crop the snapshot (default: shown below)
# crop: False
# Optional: height to resize the snapshot to (default: original size)
# height: 175
# Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
# required_zones: []
# Optional: Camera override for retention settings (default: global values)
# retain:
# Required: Default retention days (default: shown below)
# default: 15
# Optional: Per object retention days
# objects:
# person: 15
mqtt:
timestamp: false
bounding_box: false
crop: true
quality: 100
height: 500
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 0
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: true
# Optional: Configuration for how to sort the cameras in the Birdseye view.
birdseye:
# Optional: Adjust sort order of cameras in the Birdseye view. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 0
# ==== End frontdoor camera ====
#
#
# ==== Start porch camera ====
cam-porch:
# Hikvision DS-2CD2043G2-IU 4mm - h.265 encoding
#
# Hikvision RTSP url
# rtsp://<username>:<password>@<address>:<port>/Streaming/Channels/<id>/ id = first digit => camera, second and third digits => stream
# user: frigate (viewer/user only)
# password: {FRIGATE_RTSP_PASSWORD} (see below but must be url friendly)
# ip address: 10.1.5.2
# rtsp port: 554
# rtmp port: 1935
# onvif port: 8000
# media port: 9000
# Main: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.3.0.101:554/Streaming/Channels/101
# Resolution: 2688 x 1520
# Frame Rate: 30 fps
# Bitrate: 8192 kps
# H.265 Profile Main Profile
# Substream rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.3.0.101:554/Streaming/Channels/102
# Resolution: 1280x720P
# Frame Rate: 30 fps
# Bitrate: 8192 kps
# H.265 Profile High
#
# ffprobe ""
# Input #0, rtsp, from 'rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.3.0.101:554/Streaming/Channels/102':
# Metadata:
# title : Session streamed by "preview"
# comment : h264Preview_01_sub
# Duration: N/A, start: -0.637200, bitrate: N/A
# Stream #0:0: Video: h264 (High), yuv420p(progressive), 640x480, 15 tbr, 90k tbn
# Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
#
# Optional: Enable/Disable the camera (default: shown below).
# If disabled: config is used but no live stream and no capture etc.
# Events/Recordings are still viewable.
enabled: true
#
# Required: ffmpeg settings for the camera
ffmpeg:
# Required: A list of input streams for the camera. See documentation for more information.
#
# Camera level settings
#
# Optional: camera specific global args (default: inherit)
##global_args: -hide_banner -loglevel debug
#
# Optional: camera specific hwaccel args (default: inherit)
hwaccel_args: preset-nvidia-h265
# Optional: camera specific input args (default: inherit)
#
#input_args: []
input_args: preset-rtsp-generic
# Optional: camera specific output args (default: inherit)
output_args:
# Optional: output args for detect streams (default: shown below)
##detect: -f rawvideo -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
##record: -f segment -segment_time 60 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
record: preset-record-generic
# Optional: output args for rtmp streams (default: shown below)
##rtmp: -c copy -f flv
#
# ==== Start ffmpeg inputs ====
inputs:
# Required: the path to the stream
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}
#
# Reolink substream/fluent
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.2:554/Streaming/Channels/102
# Required: list of roles for this stream. valid values are: detect,record,clips,rtmp
# NOTICE: In addition to assigning the record, clips, and rtmp roles,
# they must also be enabled in the camera config.
roles:
- detect
#
# stream specific settings
#
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
#
# Reolink main stream/clear
#
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.2:554/Streaming/Channels/101
roles:
- record
# Optional: stream specific global args (default: inherit)
# global_args: []
# Optional: stream specific hwaccel args (default: inherit)
# hwaccel_args: []
# Optional: stream specific input args (default: inherit)
##input_args: -c:v h264_cuvid
# ==== End ffmpeg Inputs ====
#
# Optional: object detection
objects:
track:
- person
- car
- bicycle
- dog
- cat
#
# Optional: camera level motion config
filters:
car:
mask:
0.427,0.114,0.433,0.267,0.704,0.274,0.775,0.344,0.999,0.608,0.999,0.237,0.702,0.13,0.618,0.11
person:
mask:
0.427,0.114,0.433,0.267,0.704,0.274,0.775,0.344,0.999,0.608,0.999,0.237,0.702,0.13,0.618,0.11
dog:
mask:
0.427,0.114,0.433,0.267,0.704,0.274,0.775,0.344,0.999,0.608,0.999,0.237,0.702,0.13,0.618,0.11
cat:
mask:
0.427,0.114,0.433,0.267,0.704,0.274,0.775,0.344,0.999,0.608,0.999,0.237,0.702,0.13,0.618,0.11
motion:
mask:
- 0.439,0.113,0.442,0.27,0.62,0.265,0.618,0.112
- 0.702,0.345,0.702,0.131,1,0.238,1,0.624,0.774,0.349
best_image_timeout: 30
#
zones:
porch_door:
coordinates: 0.49,0.117,0.495,0.739,0.332,0.739,0.322,0.119
inertia: 3
porch_step:
coordinates:
0.555,0.271,0.554,0.733,0.985,0.72,0.985,0.614,0.771,0.35,0.701,0.35,0.616,0.349,0.616,0.271
#
# Optional: Camera level detect settings
inertia: 3
detect:
# Optional: enables detection for the camera (default: True)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate)
# max_disappeared: 25
# Required: width of the frame for the input with the detect role
width: 640
# Required: height of the frame for the input with the detect role
height: 480
# Optional: desired fps for your camera for the input with the detect role
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
# Frigate will attempt to autodetect if not specified.
fps: 5
#
# Optional: RTMP re-stream configuration
#rtmp:
# Required: Enable the live stream (default: True)
# enabled: True
#
# Optional: 24/7 recording configuration
#record:
# Optional: Enable recording (default: global setting)
# enabled: True
# Optional: Number of days to retain (default: global setting)
# retain_days: 7
#
# Optional: Configuration for the jpg snapshots written to the clips directory for each event
# snapshots:
# Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
# This value can be set via MQTT and will be updated in startup based on retained value
# enabled: True
# Optional: print a timestamp on the snapshots (default: shown below)
# timestamp: False
# Optional: draw bounding box on the snapshots (default: shown below)
# bounding_box: True
# Optional: crop the snapshot (default: shown below)
# crop: False
# Optional: height to resize the snapshot to (default: original size)
# height: 175
# Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
# required_zones: []
# Optional: Camera override for retention settings (default: global values)
# retain:
# Required: Default retention days (default: shown below)
# default: 10
# Optional: Per object retention days
# objects:
# person: 15
mqtt:
timestamp: false
bounding_box: false
crop: true
quality: 100
height: 500
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 2
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: true
# Optional: Configuration for how to sort the cameras in the Birdseye view.
birdseye:
# Optional: Adjust sort order of cameras in the Birdseye view. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 2
review:
detections:
required_zones:
- porch_door
- porch_step
cam-driveway:
# Amcrest IP5M-B1186E
# user: viewer (viewer/user only)
# password: {FRIGATE_RTSP_PASSWORD} (see below but must be url friendly)
# ip address: 10.1.5.3
# rtsp port: 554
# rtmp port: 1935
# onvif port: 8000
# media port: 9000
# Main: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=0
# stream token: MediaProfile00000
# Resolution: 2688 x 1520
# Frame Rate: 20 fps
# Bitrate: VBR
# Encoder H.265
# Smart Codec: On
#
#
# Substream rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif
# stream name: MediaProfile_Channel1_SubStream1
# stream token: MediaProfile00001
# Resolution: 704 x 480
# Frame Rate: 20 fps
# Bitrate: 1280 kps
# Encoder H.265
#
# ffprobe "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=1"
# Input #0, rtsp, from 'rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=1'
# Metadata:
# title : Media Server
# Duration: N/A, start: 0.150000, bitrate: N/A
# Stream #0:0: Video: h264 (Main), yuvj420p(pc, bt709, progressive), 640x480, 20 fps, 20 tbr, 90k tbn
#
# Optional: Enable/Disable the camera (default: shown below).
# If disabled: config is used but no live stream and no capture etc.
# Events/Recordings are still viewable.
enabled: true
#
# Required: ffmpeg settings for the camera
ffmpeg:
# Required: A list of input streams for the camera. See documentation for more information.
#
# Camera level settings
#
# Optional: camera specific global args (default: inherit)
##global_args: -hide_banner -loglevel debug
#
# Optional: camera specific hwaccel args (default: inherit)
# nvidia cuda - https://trac.ffmpeg.org/wiki/HWAccelIntro
hwaccel_args: preset-nvidia-h265
#
# Optional: camera specific input args (default: inherit)
#
input_args: preset-rtsp-generic
#
# Optional: camera specific output args (default: inherit)
output_args:
# Optional: output args for detect streams (default: shown below)
##detect: -f rawvideo -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
#
record: preset-record-generic
#
# ==== Start ffmpeg inputs ====
inputs:
# Required: the path to the stream
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}
#
# Amcrest sub stream
#
- path:
rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=1
roles:
- detect
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
- path:
rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.3:554/cam/realmonitor?channel=1&subtype=0
roles:
- record
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
# ==== End ffmpeg Inputs ====
#
# Optional: timeout for highest scoring image before allowing it
# to be replaced by a newer image. (default: shown below)
best_image_timeout: 30
#
#
detect:
# Optional: enables detection for the camera (default: True)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Required: width of the frame for the input with the detect role
# 2592 x 1944
# 704 x 480
# 640 x 480
width: 704
# Required: height of the frame for the input with the detect role
height: 480
# Optional: desired fps for your camera for the input with the detect role
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
# Frigate will attempt to autodetect if not specified.
fps: 5
#
#
# Optional: object detection
objects:
track:
- person
- car
- bicycle
- dog
- cat
#
# Optional: camera level motion config
#motion:
# Optional: motion mask
# NOTE: see docs for more detailed info on creating masks
filters:
car:
mask: 0.565,0,0.907,0.267,0.917,0.227,1,0.187,1,0
person:
mask: 0.565,0,0.907,0.267,0.917,0.227,1,0.187,1,0
dog:
mask: 0.565,0,0.907,0.267,0.917,0.227,1,0.187,1,0
motion:
mask:
- 1,0.938,1,1,0.746,1,0.746,0.938
- 0.563,0,1,0,1,0.188,0.921,0.226,0.907,0.269
zones:
# for motion trigger from backyard
# driveway_backyard:
# coordinates: 0,480,318,480,132,180,0,235
# objects:
# - person
# - bicycle
# - dog
# static parked car
driveway_entrance:
coordinates: 0.872,0.354,0.91,0.274,0.747,0.137,0.693,0.168
inertia: 3
driveway_street:
coordinates:
0.293,0.264,0.46,0.193,0.604,0.158,0.703,0.181,0.786,0.26,0.874,0.365,0.911,0.418,0.764,0.696,0.652,0.843,0.58,0.936,0.257,0.335
inertia: 3
driveway_garage:
coordinates: 0,0.439,0.254,0.34,0.576,0.936,0.522,1,0.003,0.998
inertia: 3
mqtt:
timestamp: false
bounding_box: false
crop: true
quality: 100
height: 500
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 3
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: true
# Optional: Configuration for how to sort the cameras in the Birdseye view.
birdseye:
# Optional: Adjust sort order of cameras in the Birdseye view. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 3
review:
detections:
required_zones:
- driveway_street
- driveway_garage
cam-backyard:
# a0:ff:0c:df:b3:3f 10.1.5.1 cam-backyard Hikvision DS-2CD2T87G2P-LSU/SL [ dual sensor, panoramic]
#
#
# user: frigate (viewer/user only)
# password: {FRIGATE_RTSP_PASSWORD} (see below but must be url friendly)
# ip address: 10.1.5.4
# http: 80
# https: 443
# rtsp: 554
# WebSocket: 7681
# webSockets: 7682
# Onvif: 8000
# Main: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/101
# Resolution: 5120 x 1440
# Frame Rate: 20 fps
# Bitrate: 16384 kps
# H.265 Profile Base
#
# ffprobe results
#
# Codec: H.265 / HEVC (High Efficiency Video Coding)
# Resolution: 1920x536
# FPS: 20/1
#
# Substream: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/102
# Resolution: 1920 x 536 (or alternatively 920 x 272)
# Frame Rate: 20 fps
# Bitrate: 8192 kps
# H.265 Main Profile
# I Frame Interval: 20
# SVC: AUTO
#
# ffprobe results
#
# Optional: Enable/Disable the camera (default: shown below).
# If disabled: config is used but no live stream and no capture etc.
# Events/Recordings are still viewable.
enabled: true
#
# Required: ffmpeg settings for the camera
ffmpeg:
# Required: A list of input streams for the camera. See documentation for more information.
#
# Camera level settings
#
# Optional: camera specific global args (default: inherit)
##global_args: -hide_banner -loglevel warning
#
# Optional: camera specific hwaccel args (default: inherit)
# nvidia cuda - https://trac.ffmpeg.org/wiki/HWAccelIntro
## hwaccel_args: -hwaccel cuda
hwaccel_args: preset-nvidia-h265
#
# Optional: camera specific input args (default: inherit)
#
# from https://docs.frigate.video/configuration/camera_specific
input_args: preset-rtsp-generic
#
# Optional: camera specific output args (default: inherit)
output_args:
# without audio
record: preset-record-generic
# with audio
#record: preset-record-generic-audio-aac
#
#
# To further improve performance, you can set ffmpeg to skip frames in the output, using the fps filter
# - -filter:v
# - fps=fps=5
# Optional: output args for detect streams (default: shown below)
##detect: -f rawvideo -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
##record: -f segment -segment_time 60 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
# Optional: output args for clips streams (default: shown below)
# clips: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
# Optional: output args for rtmp streams (default: shown below)
##rtmp: -c copy -f flv
#
# ==== Start ffmpeg inputs ====
inputs:
# Required: the path to the stream
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}
#
# DETECT: cam-frontdoor via Sub-Stream
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/Channels/102
# Required: list of roles for this stream. valid values are: detect,record,clips,rtmp
# NOTICE: In addition to assigning the record, clips, and rtmp roles,
# they must also be enabled in the camera config.
roles:
- detect
#
# stream specific settings
#
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
#
# RECORD: cam-frontdoor via Main Stream
#
- path: rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@10.1.5.4:554/Streaming/Channels/101
roles:
- record
# Optional: stream specific global args (default: inherit)
#global_args: []
# Optional: stream specific hwaccel args (default: inherit)
#hwaccel_args: []
# Optional: stream specific input args (default: inherit)
#input_args: []
# ==== End ffmpeg Inputs ====
#
#
# Optional: object detection (default: inherit via global)
objects:
track:
- person
- car
- bicycle
- dog
- cat
# - sheep
# - cow
# - deer
filters:
person:
mask:
- 0,490,750,150,750,0,0,0
- 1920,400,1920,0,1425,0,1425,200
# Optional: mask to prevent all object types from being detected in certain areas (default: no mask)
# Checks based on the bottom center of the bounding box of the object.
# NOTE: This mask is COMBINED with the object type specific mask below
#mask:
# Optional: camera level motion config
# Motion masks are used to prevent unwanted types of motion from triggering detection
motion:
mask:
- 0,0.914,0.391,0.28,0.383,0,0,0
- 1,0.819,1,0,0.742,0,0.734,0.417
best_image_timeout: 30
#
# Optional: Camera level detect settings (inherited from Global: default=true)
detect:
# Optional: enables detection for the camera (default: True)
# This value can be set via MQTT and will be updated in startup based on retained value
enabled: true
# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate)
max_disappeared: 25
# as of 0.91 moved to detect
# Required: width of the frame for the input with the detect role
width: 1920
# Required: height of the frame for the input with the detect role
height: 536
# Optional: desired fps for your camera for the input with the detect role
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
# Frigate will attempt to autodetect if not specified.
fps: 5
#
# Optional: RTMP re-stream configuration (inherited from Global: default=true)
# rtmp:
# Required: Enable the live stream (default: True)
# enabled: True
#
# Optional: 24/7 recording configuration
# record:
# Optional: Enable recording (default: global setting)
# enabled: True
# Optional: Number of days to retain (default: global setting)
# retain_days: 7
#
# Optional: Configuration for the jpg snapshots written to the clips directory for each event
# snapshots:
# Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
# This value can be set via MQTT and will be updated in startup based on retained value
# enabled: True
# Optional: print a timestamp on the snapshots (default: shown below)
# timestamp: False
# Optional: draw bounding box on the snapshots (default: shown below)
# bounding_box: True
# Optional: crop the snapshot (default: shown below)
# crop: False
# Optional: height to resize the snapshot to (default: original size)
# height: 175
# Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
# required_zones: []
# Optional: Camera override for retention settings (default: global values)
# retain:
# Required: Default retention days (default: shown below)
# default: 15
# Optional: Per object retention days
# objects:
# person: 15
mqtt:
timestamp: false
bounding_box: false
crop: true
quality: 100
height: 500
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 1
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: true
# Optional: Configuration for how to sort the cameras in the Birdseye view.
birdseye:
# Optional: Adjust sort order of cameras in the Birdseye view. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 1
zones:
backyard_driveway:
coordinates: 0.463,0.343,0.511,0.34,0.509,0.603,0.416,0.613
backyard_door:
coordinates: 0.557,0.519,0.556,0.13,0.594,0.138,0.589,0.501
backyard_garage:
coordinates: 0.356,0.909,0.336,1,0.663,0.997,0.662,0.927,0.633,0.906
inertia: 3
review:
detections:
required_zones:
- backyard_driveway
- backyard_door
- backyard_garage
# ==== End backyard camera ====
version: 0.14 Relevant log output2024-07-11 08:55:50.165655574 [INFO] Preparing Frigate...
2024-07-11 08:55:50.219536261 [INFO] Starting Frigate...
2024-07-11 08:55:55.181253115 [2024-07-11 08:55:55] frigate.app INFO : Starting Frigate (0.14.0-4e5a6eb)
2024-07-11 08:55:55.203552043 [2024-07-11 08:55:55] frigate.util.config INFO : Checking if frigate config needs migration...
2024-07-11 08:55:55.635301401 [2024-07-11 08:55:55] frigate.util.config INFO : frigate config does not need migration...
2024-07-11 08:55:55.953556946 [2024-07-11 08:55:55] peewee_migrate.logs INFO : Starting migrations
2024-07-11 08:55:55.954863880 [2024-07-11 08:55:55] peewee_migrate.logs INFO : There is nothing to migrate
2024-07-11 08:55:55.999556525 [2024-07-11 08:55:55] frigate.app INFO : Recording process started: 425
2024-07-11 08:55:56.018482984 [2024-07-11 08:55:56] frigate.app INFO : Recording process started: 431
2024-07-11 08:55:56.026076083 [2024-07-11 08:55:56] frigate.app INFO : go2rtc process pid: 98
2024-07-11 08:55:56.091307715 [2024-07-11 08:55:56] detector.coral INFO : Starting detection process: 454
2024-07-11 08:55:56.127405788 [2024-07-11 08:55:56] frigate.app INFO : Output process started: 457
2024-07-11 08:55:56.146419654 [2024-07-11 08:55:56] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as pci
2024-07-11 08:55:56.147131166 [2024-07-11 08:55:56] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found
2024-07-11 08:55:58.611232084 Process output_processor:
2024-07-11 08:55:58.614703839 Traceback (most recent call last):
2024-07-11 08:55:58.614757635 File "/usr/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap
2024-07-11 08:55:58.614759864 self.run()
2024-07-11 08:55:58.614766615 File "/usr/lib/python3.9/multiprocessing/process.py", line 108, in run
2024-07-11 08:55:58.614769743 self._target(*self._args, **self._kwargs)
2024-07-11 08:55:58.614782449 File "/opt/frigate/frigate/output/output.py", line 75, in output_frames
2024-07-11 08:55:58.614784499 preview_recorders[camera] = PreviewRecorder(cam_config)
2024-07-11 08:55:58.614786269 File "/opt/frigate/frigate/output/preview.py", line 227, in __init__
2024-07-11 08:55:58.614787760 ts = float(file_time)
2024-07-11 08:55:58.614796868 ValueError: could not convert string to float: 'fron'
2024-07-11 08:55:59.308335524 [2024-07-11 08:55:59] frigate.app INFO : Camera processor started for cam-frontdoor: 489
2024-07-11 08:55:59.351293322 [2024-07-11 08:55:59] frigate.app INFO : Camera processor started for cam-porch: 492
2024-07-11 08:55:59.382337879 [2024-07-11 08:55:59] frigate.app INFO : Camera processor started for cam-driveway: 499
2024-07-11 08:55:59.412680947 [2024-07-11 08:55:59] frigate.app INFO : Camera processor started for cam-backyard: 513
2024-07-11 08:55:59.444420352 [2024-07-11 08:55:59] frigate.app INFO : Capture process started for cam-frontdoor: 516
2024-07-11 08:55:59.474907254 [2024-07-11 08:55:59] frigate.app INFO : Capture process started for cam-porch: 524
2024-07-11 08:55:59.504153181 [2024-07-11 08:55:59] frigate.app INFO : Capture process started for cam-driveway: 528
2024-07-11 08:55:59.539470306 [2024-07-11 08:55:59] frigate.app INFO : Capture process started for cam-backyard: 534
2024-07-11 08:56:40.644556550 [2024-07-11 08:56:40] frigate.comms.dispatcher INFO : Setting motion threshold for cam-frontdoor: 30
2024-07-11 08:56:40.652968854 [2024-07-11 08:56:40] frigate.comms.dispatcher INFO : Setting motion contour area for cam-frontdoor: 10
2024-07-11 08:57:04.295755685 [2024-07-11 08:57:04] frigate.comms.dispatcher INFO : Setting motion threshold for cam-frontdoor: 30
2024-07-11 08:57:04.301448612 [2024-07-11 08:57:04] frigate.comms.dispatcher INFO : Setting motion contour area for cam-frontdoor: 10
2024-07-11 09:03:08.184364569 Fatal Python error: Bus error
2024-07-11 09:03:08.184374587
2024-07-11 09:03:08.184378902 Thread 0x00001528595f36c0 (most recent call first):
2024-07-11 09:03:08.184427256 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-07-11 09:03:08.184478135 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-07-11 09:03:08.184551951 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-07-11 09:03:08.184695749 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:08.184786101 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:08.184789170
2024-07-11 09:03:08.184814294 Thread 0x000015281e5bf6c0 (most recent call first):
2024-07-11 09:03:08.184850758 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:08.184946821 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:08.185033575 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:08.185036466
2024-07-11 09:03:08.185078988 Current thread 0x000015281c1fd6c0 (most recent call first):
2024-07-11 09:03:08.185142079 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-07-11 09:03:08.185225929 File "/opt/frigate/frigate/video.py", line 346 in run
2024-07-11 09:03:08.185325444 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:08.185429146 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:08.185432133
2024-07-11 09:03:08.185456480 Thread 0x0000152819ffc6c0 (most recent call first):
2024-07-11 09:03:08.185542864 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-07-11 09:03:08.185708500 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-07-11 09:03:08.185791005 File "/opt/frigate/frigate/video.py", line 195 in run
2024-07-11 09:03:08.185897987 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:08.186026349 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:08.186050623
2024-07-11 09:03:08.186055727 Thread 0x0000152819dfb6c0 (most recent call first):
2024-07-11 09:03:08.186101930 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:08.186232600 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:08.186356187 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:08.186383111
2024-07-11 09:03:08.186387733 Thread 0x000015287708e740 (most recent call first):
2024-07-11 09:03:08.186461514 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-07-11 09:03:08.186538332 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-07-11 09:03:08.186668245 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-07-11 09:03:08.186781795 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-07-11 09:03:08.186940592 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-07-11 09:03:08.187104268 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-07-11 09:03:08.187262670 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-07-11 09:03:08.187391424 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-07-11 09:03:08.187505680 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-07-11 09:03:08.187648194 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-07-11 09:03:08.187783996 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-07-11 09:03:08.187885926 File "/opt/frigate/frigate/app.py", line 696 in start
2024-07-11 09:03:08.188022451 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-07-11 09:03:10.189727926 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-07-11 09:03:10.189739065 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-07-11 09:03:10.189743412 Fatal Python error: Bus error
2024-07-11 09:03:10.189746361
2024-07-11 09:03:10.189749769 Thread 0x00001528595f36c0 (most recent call first):
2024-07-11 09:03:10.189753240 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-07-11 09:03:10.189802438 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-07-11 09:03:10.189807718 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-07-11 09:03:10.189813245 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.189817577 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.189820274
2024-07-11 09:03:10.189824677 Thread 0x000015281e5bf6c0 (most recent call first):
2024-07-11 09:03:10.189828000 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.189898876 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.189903088 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.189948081
2024-07-11 09:03:10.189952256 Current thread 0x000015281c1fd6c0 (most recent call first):
2024-07-11 09:03:10.189955708 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-07-11 09:03:10.189959420 File "/opt/frigate/frigate/video.py", line 346 in run
2024-07-11 09:03:10.189963034 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.189966382 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.189969924
2024-07-11 09:03:10.189973029 Thread 0x0000152819ffc6c0 (most recent call first):
2024-07-11 09:03:10.189976415 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-07-11 09:03:10.189979908 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-07-11 09:03:10.190043018 File "/opt/frigate/frigate/video.py", line 195 in run
2024-07-11 09:03:10.190047524 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190050858 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190055295
2024-07-11 09:03:10.190058475 Thread 0x0000152819dfb6c0 (most recent call first):
2024-07-11 09:03:10.190061490 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.190064793 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190068125 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190120281
2024-07-11 09:03:10.190124285 Thread 0x000015287708e740 (most recent call first):
2024-07-11 09:03:10.190127951 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-07-11 09:03:10.190131250 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-07-11 09:03:10.190134542 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-07-11 09:03:10.190138423 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-07-11 09:03:10.190141923 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-07-11 09:03:10.190145324 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-07-11 09:03:10.190148816 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-07-11 09:03:10.190228091 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-07-11 09:03:10.190232374 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-07-11 09:03:10.190235827 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-07-11 09:03:10.190239937 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-07-11 09:03:10.190243431 File "/opt/frigate/frigate/app.py", line 696 in start
2024-07-11 09:03:10.190308988 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-07-11 09:03:10.190313176 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-07-11 09:03:10.190316792 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-07-11 09:03:10.190319969 Fatal Python error: Bus error
2024-07-11 09:03:10.190322659
2024-07-11 09:03:10.190325782 Thread 0x00001528595f36c0 (most recent call first):
2024-07-11 09:03:10.190329128 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-07-11 09:03:10.190333104 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-07-11 09:03:10.190336417 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-07-11 09:03:10.190339925 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190343281 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190345768
2024-07-11 09:03:10.190348955 Thread 0x000015281e5bf6c0 (most recent call first):
2024-07-11 09:03:10.190352178 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.190355587 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190422789 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190425860
2024-07-11 09:03:10.190429039 Current thread 0x000015281c1fd6c0 (most recent call first):
2024-07-11 09:03:10.190432314 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-07-11 09:03:10.190435489 File "/opt/frigate/frigate/video.py", line 346 in run
2024-07-11 09:03:10.190438971 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190442286 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190444713
2024-07-11 09:03:10.190447872 Thread 0x0000152819ffc6c0 (most recent call first):
2024-07-11 09:03:10.190451862 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-07-11 09:03:10.190455406 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-07-11 09:03:10.190458663 File "/opt/frigate/frigate/video.py", line 195 in run
2024-07-11 09:03:10.190461994 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190465235 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190467594
2024-07-11 09:03:10.190470634 Thread 0x0000152819dfb6c0 (most recent call first):
2024-07-11 09:03:10.190473699 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.190477030 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190480649 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190483131
2024-07-11 09:03:10.190486140 Thread 0x000015287708e740 (most recent call first):
2024-07-11 09:03:10.190489478 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-07-11 09:03:10.190492734 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-07-11 09:03:10.190496067 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-07-11 09:03:10.190499457 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-07-11 09:03:10.190502907 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-07-11 09:03:10.190506324 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-07-11 09:03:10.190509792 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-07-11 09:03:10.190593973 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-07-11 09:03:10.190598396 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-07-11 09:03:10.190602044 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-07-11 09:03:10.190605672 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-07-11 09:03:10.190608895 File "/opt/frigate/frigate/app.py", line 696 in start
2024-07-11 09:03:10.190612164 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-07-11 09:03:10.190647759 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-07-11 09:03:10.190652321 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-07-11 09:03:10.190655782 Fatal Python error: Bus error
2024-07-11 09:03:10.190658666
2024-07-11 09:03:10.190662281 Thread 0x00001528595f36c0 (most recent call first):
2024-07-11 09:03:10.190666620 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-07-11 09:03:10.190750245 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-07-11 09:03:10.190754226 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-07-11 09:03:10.190757759 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190760991 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190763462
2024-07-11 09:03:10.190766544 Thread 0x000015281e5bf6c0 (most recent call first):
2024-07-11 09:03:10.190769699 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.190772976 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190776217 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190778673
2024-07-11 09:03:10.190781818 Current thread 0x000015281c1fd6c0 (most recent call first):
2024-07-11 09:03:10.190785037 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-07-11 09:03:10.190788123 File "/opt/frigate/frigate/video.py", line 346 in run
2024-07-11 09:03:10.190791593 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190872751 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190876123
2024-07-11 09:03:10.190879614 Thread 0x0000152819ffc6c0 (most recent call first):
2024-07-11 09:03:10.190883342 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-07-11 09:03:10.190886833 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-07-11 09:03:10.190890058 File "/opt/frigate/frigate/video.py", line 195 in run
2024-07-11 09:03:10.190893391 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190896721 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190899158
2024-07-11 09:03:10.190902199 Thread 0x0000152819dfb6c0 (most recent call first):
2024-07-11 09:03:10.190905341 File "/opt/frigate/frigate/log.py", line 95 in run
2024-07-11 09:03:10.190908659 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-07-11 09:03:10.190911981 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-07-11 09:03:10.190914391
2024-07-11 09:03:10.190917425 Thread 0x000015287708e740 (most recent call first):
2024-07-11 09:03:10.190920810 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-07-11 09:03:10.191033468 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-07-11 09:03:10.191037660 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-07-11 09:03:10.191041084 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-07-11 09:03:10.191044578 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-07-11 09:03:10.191048074 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-07-11 09:03:10.191051591 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-07-11 09:03:10.191054979 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-07-11 09:03:10.191058333 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-07-11 09:03:10.191061752 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-07-11 09:03:10.191065402 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-07-11 09:03:10.191068573 File "/opt/frigate/frigate/app.py", line 696 in start
2024-07-11 09:03:10.191071942 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-07-11 09:03:10.191149713 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-07-11 09:03:10.191155360 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-07-11 09:04:11.468264152 [2024-07-11 09:04:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:11.471333947 [2024-07-11 09:04:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:11.474901002 [2024-07-11 09:04:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:16.471838693 [2024-07-11 09:04:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:21.477455941 [2024-07-11 09:04:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:26.481464009 [2024-07-11 09:04:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:26.484849816 [2024-07-11 09:04:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:26.490415938 [2024-07-11 09:04:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:31.478558659 [2024-07-11 09:04:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:31.480409737 [2024-07-11 09:04:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:36.482465748 [2024-07-11 09:04:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:36.483596853 [2024-07-11 09:04:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:41.495085730 [2024-07-11 09:04:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:46.492796436 [2024-07-11 09:04:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:46.494440565 [2024-07-11 09:04:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:46.496543015 [2024-07-11 09:04:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:51.497426837 [2024-07-11 09:04:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:51.499268007 [2024-07-11 09:04:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:51.500907701 [2024-07-11 09:04:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:04:56.501545092 [2024-07-11 09:04:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:01.515636217 [2024-07-11 09:05:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:06.518125846 [2024-07-11 09:05:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:06.520278509 [2024-07-11 09:05:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:06.526118738 [2024-07-11 09:05:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:11.523242625 [2024-07-11 09:05:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:11.527061565 [2024-07-11 09:05:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:11.529305962 [2024-07-11 09:05:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:16.524718421 [2024-07-11 09:05:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:21.529945083 [2024-07-11 09:05:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:26.535637147 [2024-07-11 09:05:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:26.539554372 [2024-07-11 09:05:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:26.545351097 [2024-07-11 09:05:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:31.539638182 [2024-07-11 09:05:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:31.542818672 [2024-07-11 09:05:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:31.544978691 [2024-07-11 09:05:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:36.545279202 [2024-07-11 09:05:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:41.548160703 [2024-07-11 09:05:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:46.554315826 [2024-07-11 09:05:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:46.557388873 [2024-07-11 09:05:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:46.563101963 [2024-07-11 09:05:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:51.549527752 [2024-07-11 09:05:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:51.551371482 [2024-07-11 09:05:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:51.552532010 [2024-07-11 09:05:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:05:56.562928744 [2024-07-11 09:05:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:01.559810065 [2024-07-11 09:06:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:06.565730602 [2024-07-11 09:06:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:06.567505361 [2024-07-11 09:06:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:06.570200652 [2024-07-11 09:06:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:11.578639708 [2024-07-11 09:06:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:11.582307036 [2024-07-11 09:06:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:11.584484790 [2024-07-11 09:06:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:16.574406716 [2024-07-11 09:06:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:21.588428824 [2024-07-11 09:06:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:26.593813276 [2024-07-11 09:06:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:26.597340974 [2024-07-11 09:06:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:26.602796771 [2024-07-11 09:06:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:31.597721937 [2024-07-11 09:06:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:31.601339730 [2024-07-11 09:06:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:31.604421853 [2024-07-11 09:06:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:36.599777054 [2024-07-11 09:06:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:41.607978264 [2024-07-11 09:06:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:46.613008481 [2024-07-11 09:06:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:46.616070177 [2024-07-11 09:06:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:46.621859159 [2024-07-11 09:06:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:51.618834585 [2024-07-11 09:06:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:51.622291185 [2024-07-11 09:06:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:51.625196201 [2024-07-11 09:06:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:06:56.614741493 [2024-07-11 09:06:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:01.620432898 [2024-07-11 09:07:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:06.624551123 [2024-07-11 09:07:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:06.626122436 [2024-07-11 09:07:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:06.629178582 [2024-07-11 09:07:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:11.629541614 [2024-07-11 09:07:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:11.631470812 [2024-07-11 09:07:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:11.632526914 [2024-07-11 09:07:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:16.634697376 [2024-07-11 09:07:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:21.647721029 [2024-07-11 09:07:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:26.653689167 [2024-07-11 09:07:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:26.657160672 [2024-07-11 09:07:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:26.662154686 [2024-07-11 09:07:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:31.653991984 [2024-07-11 09:07:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:31.657691218 [2024-07-11 09:07:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:31.660093673 [2024-07-11 09:07:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:36.654791288 [2024-07-11 09:07:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:41.660453678 [2024-07-11 09:07:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:46.673069000 [2024-07-11 09:07:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:46.676811400 [2024-07-11 09:07:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:46.681839291 [2024-07-11 09:07:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:51.677227127 [2024-07-11 09:07:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:51.680306732 [2024-07-11 09:07:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:51.683529967 [2024-07-11 09:07:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:07:56.681909517 [2024-07-11 09:07:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:01.684361919 [2024-07-11 09:08:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:06.692355981 [2024-07-11 09:08:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:06.695637216 [2024-07-11 09:08:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:06.700650091 [2024-07-11 09:08:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:11.697693999 [2024-07-11 09:08:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:11.701540340 [2024-07-11 09:08:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:11.703460616 [2024-07-11 09:08:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:16.701997656 [2024-07-11 09:08:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:21.709293321 [2024-07-11 09:08:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:26.712124395 [2024-07-11 09:08:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:26.715519996 [2024-07-11 09:08:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:26.720861902 [2024-07-11 09:08:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:31.708978147 [2024-07-11 09:08:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:31.710198229 [2024-07-11 09:08:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:31.711338681 [2024-07-11 09:08:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:36.716957779 [2024-07-11 09:08:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:41.726752436 [2024-07-11 09:08:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:46.731138170 [2024-07-11 09:08:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:46.734747332 [2024-07-11 09:08:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:46.739314442 [2024-07-11 09:08:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:51.736254251 [2024-07-11 09:08:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:51.739072847 [2024-07-11 09:08:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:51.741377679 [2024-07-11 09:08:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:08:56.732601796 [2024-07-11 09:08:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:01.744373487 [2024-07-11 09:09:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:06.752309841 [2024-07-11 09:09:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:06.755583034 [2024-07-11 09:09:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:06.760159304 [2024-07-11 09:09:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:11.756278855 [2024-07-11 09:09:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:17.761800244 [2024-07-11 09:09:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:17.761813401 [2024-07-11 09:09:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:17.761819631 [2024-07-11 09:09:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:21.766524998 [2024-07-11 09:09:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:26.770278494 [2024-07-11 09:09:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:26.773242751 [2024-07-11 09:09:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:26.778340727 [2024-07-11 09:09:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:31.775725437 [2024-07-11 09:09:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:31.777528643 [2024-07-11 09:09:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:31.780964975 [2024-07-11 09:09:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:36.771682594 [2024-07-11 09:09:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:41.776525896 [2024-07-11 09:09:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:46.791290001 [2024-07-11 09:09:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:46.794321759 [2024-07-11 09:09:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:46.799297384 [2024-07-11 09:09:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:51.795191949 [2024-07-11 09:09:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:51.797918419 [2024-07-11 09:09:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:51.799556540 [2024-07-11 09:09:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:09:56.800023386 [2024-07-11 09:09:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:01.805375046 [2024-07-11 09:10:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:06.810406228 [2024-07-11 09:10:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:06.813291209 [2024-07-11 09:10:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:06.818130302 [2024-07-11 09:10:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:11.815423731 [2024-07-11 09:10:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:11.818168884 [2024-07-11 09:10:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:11.820239990 [2024-07-11 09:10:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:16.819897618 [2024-07-11 09:10:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:21.821862671 [2024-07-11 09:10:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:26.827093896 [2024-07-11 09:10:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:26.830013863 [2024-07-11 09:10:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:26.835194042 [2024-07-11 09:10:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:31.832374886 [2024-07-11 09:10:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:31.835249005 [2024-07-11 09:10:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:31.837248985 [2024-07-11 09:10:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:10:36.836926449 [2024-07-11 09:10:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001796683 [2024-07-11 09:10:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001811179 [2024-07-11 09:10:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001814095 [2024-07-11 09:10:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001816716 [2024-07-11 09:10:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001819305 [2024-07-11 09:10:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001821813 [2024-07-11 09:10:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001824240 [2024-07-11 09:10:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001826765 [2024-07-11 09:10:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001829370 [2024-07-11 09:11:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001831860 [2024-07-11 09:11:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001834437 [2024-07-11 09:11:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001836913 [2024-07-11 09:11:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001839520 [2024-07-11 09:11:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001842014 [2024-07-11 09:11:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001844473 [2024-07-11 09:11:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001846934 [2024-07-11 09:11:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001849486 [2024-07-11 09:11:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001852458 [2024-07-11 09:11:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001855062 [2024-07-11 09:11:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001857625 [2024-07-11 09:11:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001860291 [2024-07-11 09:11:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001863036 [2024-07-11 09:11:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001865665 [2024-07-11 09:11:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001868148 [2024-07-11 09:11:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001870634 [2024-07-11 09:11:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001873110 [2024-07-11 09:11:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001875591 [2024-07-11 09:11:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001878098 [2024-07-11 09:11:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001880568 [2024-07-11 09:11:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001883079 [2024-07-11 09:11:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001885588 [2024-07-11 09:11:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001888063 [2024-07-11 09:11:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001890543 [2024-07-11 09:12:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001893006 [2024-07-11 09:12:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001895732 [2024-07-11 09:12:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001898248 [2024-07-11 09:12:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001900734 [2024-07-11 09:12:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001903248 [2024-07-11 09:12:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001905721 [2024-07-11 09:12:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001908196 [2024-07-11 09:12:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001948959 [2024-07-11 09:12:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001952361 [2024-07-11 09:12:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001955579 [2024-07-11 09:12:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001959027 [2024-07-11 09:12:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001961738 [2024-07-11 09:12:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001964442 [2024-07-11 09:12:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001968086 [2024-07-11 09:12:31] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001970832 [2024-07-11 09:12:36] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001973492 [2024-07-11 09:12:41] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001976226 [2024-07-11 09:12:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001979025 [2024-07-11 09:12:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001982016 [2024-07-11 09:12:46] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001985080 [2024-07-11 09:12:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001988529 [2024-07-11 09:12:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001991982 [2024-07-11 09:12:51] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001995082 [2024-07-11 09:12:56] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.001998459 [2024-07-11 09:13:01] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002001958 [2024-07-11 09:13:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002005246 [2024-07-11 09:13:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002008159 [2024-07-11 09:13:06] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002011046 [2024-07-11 09:13:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002013858 [2024-07-11 09:13:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002016700 [2024-07-11 09:13:11] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.002019637 [2024-07-11 09:13:16] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:21.986842293 [2024-07-11 09:13:21] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:26.991719396 [2024-07-11 09:13:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:26.993098542 [2024-07-11 09:13:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:26.996058778 [2024-07-11 09:13:26] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:32.005486787 [2024-07-11 09:13:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:32.008467723 [2024-07-11 09:13:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:32.010906060 [2024-07-11 09:13:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:37.010154992 [2024-07-11 09:13:37] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:42.006980928 [2024-07-11 09:13:42] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:47.011641299 [2024-07-11 09:13:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:47.013070256 [2024-07-11 09:13:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:47.015980682 [2024-07-11 09:13:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:52.016771835 [2024-07-11 09:13:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:52.018303669 [2024-07-11 09:13:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:52.019785796 [2024-07-11 09:13:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:13:57.028826974 [2024-07-11 09:13:57] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:02.024951288 [2024-07-11 09:14:02] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:07.038649949 [2024-07-11 09:14:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:07.041505013 [2024-07-11 09:14:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:07.046812277 [2024-07-11 09:14:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:12.042909829 [2024-07-11 09:14:12] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:12.045510879 [2024-07-11 09:14:12] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:12.048399545 [2024-07-11 09:14:12] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:17.046971774 [2024-07-11 09:14:17] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:22.051483180 [2024-07-11 09:14:22] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:27.056798510 [2024-07-11 09:14:27] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:27.059787640 [2024-07-11 09:14:27] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:27.064536953 [2024-07-11 09:14:27] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:32.063795527 [2024-07-11 09:14:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:32.066673640 [2024-07-11 09:14:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:32.068754255 [2024-07-11 09:14:32] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:37.067092272 [2024-07-11 09:14:37] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:42.070960129 [2024-07-11 09:14:42] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:47.068520214 [2024-07-11 09:14:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:47.070773630 [2024-07-11 09:14:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:47.072920926 [2024-07-11 09:14:47] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:52.083658307 [2024-07-11 09:14:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:52.085925830 [2024-07-11 09:14:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:52.089453503 [2024-07-11 09:14:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:14:52.091484257 [2024-07-11 09:14:52] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:02.082550283 [2024-07-11 09:15:02] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:07.087654062 [2024-07-11 09:15:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-porch. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:07.089126269 [2024-07-11 09:15:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:07.091710153 [2024-07-11 09:15:07] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-frontdoor. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:12.092663846 [2024-07-11 09:15:12] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-backyard. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-07-11 09:15:12.094015738 [2024-07-11 09:15:12] frigate.record.maintainer WARNING : Unable to keep up with recording segments in cache for cam-driveway. Keeping the 6 most recent segments out of 7 and discarding the rest... Operating systemUNRAID Install methodDocker CLI Network connectionWired Camera make and model[2] Hikvision DS-2CD2T87G2P-LSU/SL [ dual sensor, panoramic], 8MP H.265 encoding [1] Hikvision DS-2CD2043G2-IU, 4MP H.265 encoding [1] Amcrest IP5M-B1186EW-2.8mm, 4MP H.265 encoding Any other information that may be helpfulrunning in docker container hosted on Unraid with AMD Opteron 6380, 32 cores, 128MB ECC mem, Coral pci tpu, Quadro RTX 4000 for encoding docker run cmd, ignore the tensorrt labels, at one time I tried using the RTX as the detector and have switched back to the coral tpu docker run The command finished successfully! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
this should already be fixed in commits after beta3 |
Beta Was this translation helpful? Give feedback.
this should already be fixed in commits after beta3