[Support]: FFMPEG crashes (Fatal Python error: Bus error) #12967
-
Describe the problem you are havingI have a lot of issues with the stability of the v14. Cameras FFMPEG crashes within hours of running the container. Steps to reproduceNothing special Version0.14.0-da913d8 Frigate config filedetectors:
coral:
type: edgetpu
device: usb
audio:
enabled: false
min_volume: 500
listen:
- meow
- speech
mqtt:
# Required: host name
host: 192.168.1.XXX # 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: user
# Optional: password
# NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}.
# eg. password: '{FRIGATE_MQTT_PASSWORD}'
password: password
# Optional: interval in seconds for publishing stats (default: shown below)
stats_interval: 60
# Optional: TLS configuration
tls:
# Optional: Enable TLS for port 8971 (default: shown below)
enabled: False
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: true
# Optional: draw bounding box on the snapshots (default: shown below)
bounding_box: true
# Optional: Camera override for retention settings (default: global values)
retain:
# Required: Default retention days (default: shown below)
default: 1
birdseye:
# Optional: Enable birdseye view (default: shown below)
enabled: true
# Optional: Width of the output resolution (default: shown below)
width: 1920
# Optional: Height of the output resolution (default: shown below)
height: 1080
# 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: 10
# 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: objects
record:
enabled: true
retain:
days: 2
mode: all
events:
retain:
default: 2
mode: motion
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: 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: 30
# Optional: The percentage of the image used to detect lightning or other substantial changes where motion detection
# needs to recalibrate. (default: shown below)
# Increasing this value will make motion detection more likely to consider lightning or ir mode changes as valid motion.
# Decreasing this value will make motion detection more likely to ignore large amounts of motion such as a person approaching
# a doorbell camera.
lightning_threshold: 0.8
# Optional: Minimum size in pixels in the resized motion image that counts as motion (default: shown below)
# 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:
# - 10 - high sensitivity
# - 30 - medium sensitivity
# - 50 - low sensitivity
contour_area: 10
# 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.01
# Optional: Height of the resized motion frame (default: 50)
# 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: true
# Optional: Delay when updating camera motion through MQTT from ON -> OFF (default: shown below).
#mqtt_off_delay: 30
objects:
# Optional: list of objects to track from labelmap.txt (default: shown below)
track:
- person
- cat
# 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: 3000
# Optional: maximum width*height of the bounding box for the detected object (default: 24000000)
#max_area: 10000
# Optional: minimum score for the object to initiate tracking (default: shown below)
min_score: 0.60
# Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
threshold: 0.70
cat:
min_area: 3000
#max_area: 1000
min_score: 0.60
threshold: 0.70
bird:
min_area: 3000
#max_area: 1000
min_score: 0.55
threshold: 0.65
detect:
# Optional: width of the frame for the input with the detect role (default: shown below)
width: 1920
#width: 640
# Optional: height of the frame for the input with the detect role (default: shown below)
height: 1080
#height: 360
# 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
# Optional: Configuration for stationary object tracking
stationary:
# Optional: Frequency for confirming stationary objects (default: shown below)
# When set to 0, object detection will not confirm stationary objects until movement is detected.
# If set to 10, object detection will run to confirm the object still exists on every 10th frame.
interval: 20
# Optional: Number of frames without a position change for an object to be considered stationary (default: 10x the frame rate or 10s)
threshold: 50
# 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.
# WARNING: Setting these values overrides default behavior and disables stationary object tracking.
# There are very few situations where you would want it disabled. It is NOT recommended to
# copy these values from the example config into your config unless you know they are needed.
ffmpeg:
hwaccel_args: preset-vaapi
input_args: preset-rtsp-restream
output_args:
record: preset-record-generic-audio-copy
go2rtc:
rtsp:
username: my_username
password: my_password
streams:
pasillo:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:pasillo#audio=aac
oficina:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:oficina#audio=aac
cocina:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:cocina#audio=aac
salon:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:salon#audio=aac
garaje:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:garaje#audio=aac
terraza:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:terraza#audio=aac
balcon:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:balcon#audio=aac
barbacoa:
- rtsp://my_username:[email protected]:554/stream1
- ffmpeg:barbacoa#audio=aac
# webrtc:
# candidates:
# - 192.168.1.XXX:8555
# - stun:8555
cameras:
# Name of your camera
pasillo:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/pasillo
roles:
- record
- detect
# Name of your camera
oficina:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/oficina
roles:
- record
- detect
zones:
oficina_zone:
coordinates: 1920,1080,1920,0,0,0,0,1080
onvif:
# Required: host of the camera being connected to.
host: 192.168.1.XXX
# Optional: ONVIF port for device (default: shown below).
port: 2020
# Optional: username for login.
# NOTE: Some devices require admin to access ONVIF.
user: my_username
# Optional: password for login.
password: my_password
# Optional: PTZ camera object autotracking. Keeps a moving object in
# the center of the frame by automatically moving the PTZ camera.
autotracking:
# Optional: enable/disable object autotracking. (default: shown below)
enabled: false
# Optional: calibrate the camera on startup (default: shown below)
# A calibration will move the PTZ in increments and measure the time it takes to move.
# The results are used to help estimate the position of tracked objects after a camera move.
# Frigate will update your config file automatically after a calibration with
# a "movement_weights" entry for the camera. You should then set calibrate_on_startup to False.
calibrate_on_startup: false
# Optional: the mode to use for zooming in/out on objects during autotracking. (default: shown below)
# Available options are: disabled, absolute, and relative
# disabled - don't zoom in/out on autotracked objects, use pan/tilt only
# absolute - use absolute zooming (supported by most PTZ capable cameras)
# relative - use relative zooming (not supported on all PTZs, but makes concurrent pan/tilt/zoom movements)
zooming: disabled
# Optional: A value to change the behavior of zooming on autotracked objects. (default: shown below)
# A lower value will keep more of the scene in view around a tracked object.
# A higher value will zoom in more on a tracked object, but Frigate may lose tracking more quickly.
# The value should be between 0.1 and 0.75
zoom_factor: 0.3
# Optional: list of objects to track from labelmap.txt (default: shown below)
# Optional: list of objects to track from labelmap.txt (default: shown below)
track:
- person
- cat
# Required: Begin automatically tracking an object when it enters any of the listed zones.
required_zones:
- oficina_zone
# Required: Name of ONVIF preset in camera's firmware to return to when tracking is over. (default: shown below)
return_preset: preset1
# Optional: Seconds to delay before returning to preset. (default: shown below)
timeout: 10
# Name of your camera
cocina:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/cocina
roles:
- record
- detect
# Name of your camera
salon:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/salon
roles:
- record
- detect
zones:
salon_zone:
coordinates: 1920,1080,1920,0,0,0,0,1080
onvif:
# Required: host of the camera being connected to.
host: 192.168.1.XXX
# Optional: ONVIF port for device (default: shown below).
port: 2020
# Optional: username for login.
# NOTE: Some devices require admin to access ONVIF.
user: my_username
# Optional: password for login.
password: my_password
# Optional: PTZ camera object autotracking. Keeps a moving object in
# the center of the frame by automatically moving the PTZ camera.
autotracking:
# Optional: enable/disable object autotracking. (default: shown below)
enabled: false
# Optional: calibrate the camera on startup (default: shown below)
# A calibration will move the PTZ in increments and measure the time it takes to move.
# The results are used to help estimate the position of tracked objects after a camera move.
# Frigate will update your config file automatically after a calibration with
# a "movement_weights" entry for the camera. You should then set calibrate_on_startup to False.
calibrate_on_startup: false
# Optional: the mode to use for zooming in/out on objects during autotracking. (default: shown below)
# Available options are: disabled, absolute, and relative
# disabled - don't zoom in/out on autotracked objects, use pan/tilt only
# absolute - use absolute zooming (supported by most PTZ capable cameras)
# relative - use relative zooming (not supported on all PTZs, but makes concurrent pan/tilt/zoom movements)
zooming: disabled
# Optional: A value to change the behavior of zooming on autotracked objects. (default: shown below)
# A lower value will keep more of the scene in view around a tracked object.
# A higher value will zoom in more on a tracked object, but Frigate may lose tracking more quickly.
# The value should be between 0.1 and 0.75
zoom_factor: 0.3
# Optional: list of objects to track from labelmap.txt (default: shown below)
track:
- person
- cat
# Required: Begin automatically tracking an object when it enters any of the listed zones.
required_zones:
- salon_zone
# Required: Name of ONVIF preset in camera's firmware to return to when tracking is over. (default: shown below)
return_preset: preset2
# Optional: Seconds to delay before returning to preset. (default: shown below)
timeout: 10
# Name of your camera
garaje:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/garaje
roles:
- record
- detect
objects:
track:
- person
# Name of your camera
terraza:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/terraza
roles:
- record
- detect
objects:
track:
- bird
- person
motion:
mask:
- 0,360,0,286,115,237,271,360
mqtt:
enabled: true
bounding_box: false #this will get rid of the box around the bird. We already know it is a bird. Sheesh.
timestamp: false #this will get rid of the time stamp in the image.
quality: 95 #default quality is 70, which will get you lots of compression artifacts
# Name of your camera
balcon:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/balcon
roles:
- record
- detect
objects:
track:
- bird
- person
filters:
bird:
mask:
- 1920,1080,1920,435,1335,409,1066,626,1029,1080
mqtt:
enabled: true
bounding_box: false #this will get rid of the box around the bird. We already know it is a bird. Sheesh.
timestamp: false #this will get rid of the time stamp in the image.
quality: 95 #default quality is 70, which will get you lots of compression artifacts
motion:
mask:
#- 564,0,1012,0,990,286,805,257,593,286
- 1042,1080,1658,1080,1711,736,1749,441,1261,371,1085,552,1040,706
# Name of your camera
barbacoa:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/barbacoa
roles:
- record
- detect
objects:
track:
- bird
- person
filters:
bird:
mask:
- 883,899,630,1080,486,1080,98,1080,22,789,0,446,111,259,262,146,506,244,1002,102,1118,0,1298,0,1322,298,766,609
mqtt:
enabled: true
bounding_box: false #this will get rid of the box around the bird. We already know it is a bird. Sheesh.
timestamp: false #this will get rid of the time stamp in the image.
quality: 95 #default quality is 70, which will get you lots of compression artifacts
motion:
mask:
- 1042,1080,0,1080,0,0,477,0,266,150,350,250,458,205,552,262,571,372,966,296,940,62,1065,0,1212,0,1324,30,1280,312,1494,407,1505,642
# Optional: Telemetry configuration
telemetry:
# Optional: Enabled network interfaces for bandwidth stats monitoring (default: shown below)
network_interfaces: []
# Optional: Configure system stats
stats:
# Enable AMD GPU stats (default: shown below)
amd_gpu_stats: false
# Enable Intel GPU stats (default: shown below)
intel_gpu_stats: true
# Enable network bandwidth stats monitoring for camera ffmpeg processes, go2rtc, and object detectors. (default: shown below)
network_bandwidth: false
# 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
version: 0.14 Relevant log output2024-08-11 11:52:28.333963890 [INFO] Preparing Frigate...
2024-08-11 11:52:28.428034208 [INFO] Starting Frigate...
2024-08-11 11:52:31.473068421 [2024-08-11 11:52:31] frigate.app INFO : Starting Frigate (0.14.0-da913d8)
2024-08-11 11:52:31.473215008 [2024-08-11 11:52:31] frigate.util.config INFO : Checking if frigate config needs migration...
2024-08-11 11:52:31.630129311 [2024-08-11 11:52:31] frigate.util.config INFO : frigate config does not need migration...
2024-08-11 11:52:31.795355696 [2024-08-11 11:52:31] peewee_migrate.logs INFO : Starting migrations
2024-08-11 11:52:31.796552171 [2024-08-11 11:52:31] peewee_migrate.logs INFO : There is nothing to migrate
2024-08-11 11:52:32.256063087 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 334
2024-08-11 11:52:32.265812745 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 343
2024-08-11 11:52:32.270464887 [2024-08-11 11:52:32] frigate.app INFO : go2rtc process pid: 98
2024-08-11 11:52:32.410373283 [2024-08-11 11:52:32] frigate.app INFO : Output process started: 368
2024-08-11 11:52:32.572213010 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for pasillo: 414
2024-08-11 11:52:32.581399367 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for oficina: 419
2024-08-11 11:52:32.591026308 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for cocina: 424
2024-08-11 11:52:32.601291819 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for salon: 440
2024-08-11 11:52:32.611198118 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for garaje: 449
2024-08-11 11:52:32.622241207 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for terraza: 457
2024-08-11 11:52:32.631618718 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for balcon: 470
2024-08-11 11:52:32.640493423 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for barbacoa: 478
2024-08-11 11:52:32.649235748 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for pasillo: 486
2024-08-11 11:52:32.658711180 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for oficina: 496
2024-08-11 11:52:32.666885366 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for cocina: 500
2024-08-11 11:52:32.676378982 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for salon: 505
2024-08-11 11:52:32.685478711 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for garaje: 508
2024-08-11 11:52:32.694301657 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for terraza: 514
2024-08-11 11:52:32.703496338 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for balcon: 517
2024-08-11 11:52:32.714428495 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for barbacoa: 522
2024-08-11 11:52:34.617561022 [2024-08-11 11:52:34] frigate.util.services ERROR : Unable to poll intel GPU stats: Failed to initialize PMU! (Operation not permitted)
2024-08-11 19:32:54.599556 2024-08-11 11:52:34.617565839
2024-08-11 11:52:34.993151558 [2024-08-11 11:52:32] detector.coral INFO : Starting detection process: 363
2024-08-11 11:52:34.996343808 [2024-08-11 11:52:32] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as usb
2024-08-11 11:52:34.996497097 [2024-08-11 11:52:34] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found
2024-08-11 11:55:09.227384168 Fatal Python error: Bus error
2024-08-11 19:32:54.599572 2024-08-11 11:55:09.227388803
2024-08-11 11:55:09.227473212 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.229679129 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.229683292 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.229685192 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.229689033 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.229690963 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599583 2024-08-11 11:55:11.230341559
2024-08-11 11:55:11.230344563 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230347224 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230349155 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230350994 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230382790 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599592 2024-08-11 11:55:11.230384270
2024-08-11 11:55:11.230386221 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230388199 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230417216 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230419411 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230421458 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230423268 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599601 2024-08-11 11:55:11.230424666
2024-08-11 11:55:11.230426389 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230428113 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230429901 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230453007 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471096 2024-08-11 11:55:11.230454408
2024-08-11 11:55:11.230456035 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230457879 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230459781 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230461604 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230463483 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230493871 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230495821 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230497729 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230499714 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230501502 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.230503342 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.230505209 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.230507018 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.230508895 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.230510607 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.230512394 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.230513914 Fatal Python error: Bus error
2024-08-11 19:32:54.471115 2024-08-11 11:55:11.230544344
2024-08-11 11:55:11.230546113 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.230547846 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.230549641 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.230551341 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.230553037 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230554832 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471125 2024-08-11 11:55:11.230556084
2024-08-11 11:55:11.230564874 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230884110 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230886766 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230888792 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230896304 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471133 2024-08-11 11:55:11.230902735
2024-08-11 11:55:11.230904118 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230905534 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230906933 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230908312 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230909690 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230911207 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339847 2024-08-11 11:55:11.230953037
2024-08-11 11:55:11.230974697 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230976351 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230978378 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230980276 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339854 2024-08-11 11:55:11.230981808
2024-08-11 11:55:11.230983379 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230985137 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230986920 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230988748 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230990474 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230992160 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230994087 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230995841 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230997630 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230999375 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231001070 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231002973 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231004586 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231006287 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231007965 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231009664 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231011040 Fatal Python error: Bus error
2024-08-11 19:32:54.339874 2024-08-11 11:55:11.231012298
2024-08-11 11:55:11.231013907 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231015551 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231017300 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231019052 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231068018 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231070254 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339884 2024-08-11 11:55:11.231071588
2024-08-11 11:55:11.231073299 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231075193 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231076930 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231078750 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231080476 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339893 2024-08-11 11:55:11.231081786
2024-08-11 11:55:11.231083482 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.231085356 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.231087232 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.231127199 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.231128998 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231130653 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212545 2024-08-11 11:55:11.231131917
2024-08-11 11:55:11.231133592 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.231135235 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.231137049 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231138804 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212553 2024-08-11 11:55:11.231140113
2024-08-11 11:55:11.231141792 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.231143666 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.231145384 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.231147165 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.231149037 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.231190560 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.231192505 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.231194393 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.231196154 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.231197899 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231199687 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231201536 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231203198 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231204881 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231206662 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231208447 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231209977 Fatal Python error: Bus error
2024-08-11 19:32:54.212572 2024-08-11 11:55:11.231211262
2024-08-11 11:55:11.231212827 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231568675 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231570779 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231572496 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231574239 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231575988 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212582 2024-08-11 11:55:11.231577322
2024-08-11 11:55:11.231579027 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231580741 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231582332 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231584060 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231585799 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212591 2024-08-11 11:55:11.231587118
2024-08-11 11:55:11.231588781 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.232779997 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.232824830 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.232826947 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.232828943 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232831000 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690537 2024-08-11 11:55:11.232832517
2024-08-11 11:55:11.232833986 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.232835634 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.232837278 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232838984 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690545 2024-08-11 11:55:11.232840314
2024-08-11 11:55:11.232841960 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.232843839 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.232845483 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.232847063 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.232848804 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.233157984 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.233217964 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.233399496 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.233883273 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.233892011 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.233893845 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.233895649 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.233897243 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.233898639 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.233900134 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.235603207 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.243120434 Fatal Python error: Bus error
2024-08-11 19:32:53.690564 2024-08-11 11:55:11.243123867
2024-08-11 11:55:11.243125713 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.243127556 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247062295 File "/usr/lib/python3.9/multiproceFatal Python error: Bus error
2024-08-11 19:32:53.690571 2024-08-11 11:55:11.247066017
2024-08-11 11:55:11.247067830 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247069641 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247071457 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247073098 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247074820 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247076383 File "/usr/lib/python3.9/threading.Fatal Python error: Bus error
2024-08-11 19:32:53.182592 2024-08-11 11:55:11.247077737
2024-08-11 11:55:11.247079387 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247081097 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247082972 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247084614 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247086364 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247088005 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182602 2024-08-11 11:55:11.247089281
2024-08-11 11:55:11.247090927 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247092690 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247094173 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247095973 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247097639 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182610 2024-08-11 11:55:11.247098907
2024-08-11 11:55:11.247100527 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247102324 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247104107 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247105718 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247107427 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247108954 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182617 2024-08-11 11:55:11.247110137
2024-08-11 11:55:11.247111741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.247113340 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.247115079 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247116761 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182622 2024-08-11 11:55:11.247117906
2024-08-11 11:55:11.247119564 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.247121457 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.247123160 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.247125032 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.247126871 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.247128499 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.247130344 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.247132462 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.247134354 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.247136256 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.247138141 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.247140176 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.247141885 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.247143734 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.247145525 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.247147398 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.247149034 ssing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247150933 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247152406 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247154054 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680442 2024-08-11 11:55:11.247155359
2024-08-11 11:55:11.247157227 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247159011 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247160934 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247162853 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247164816 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680453 2024-08-11 11:55:11.247165879
2024-08-11 11:55:11.247167605 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247169668 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247171316 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247172848 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247174452 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247176171 File "/usr/lib/python3.9/threapy", line 912 in _bootstrap
2024-08-11 19:32:52.680464 2024-08-11 11:55:11.247177684
2024-08-11 11:55:11.247179713 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247181761 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247183252 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247184825 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247186480 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680474 2024-08-11 11:55:11.247187750
2024-08-11 11:55:11.247189405 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247191407 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247193298 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247195334 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247197109 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253375610 File "/uFatal Python error: Bus error
2024-08-11 19:32:52.680485 2024-08-11 11:55:11.253378147
2024-08-11 11:55:11.253379965 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.253381659 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.253383499 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.253385195 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.253386832 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253388436 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680497 2024-08-11 11:55:11.253389757
2024-08-11 11:55:11.253391394 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.253393117 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.253394868 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.253396601 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253398317 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091655 2024-08-11 11:55:11.253399639
2024-08-11 11:55:11.253401289 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.253403114 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.253404915 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.253406643 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.253408330 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253410070 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091659 2024-08-11 11:55:11.253411288
2024-08-11 11:55:11.253412741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253414502 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253416561 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253418049 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091662 2024-08-11 11:55:11.253419299
2024-08-11 11:55:11.253420969 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253422866 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253424653 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253426727 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253428893 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253430815 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253432682 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253434642 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253436482 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253438809 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Psr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091667 2024-08-11 11:55:11.253440084
2024-08-11 11:55:11.253441794 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253443909 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253445781 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253447778 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091670 2024-08-11 11:55:11.253449123
2024-08-11 11:55:11.253450955 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253453019 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253454725 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253456282 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253457799 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253459590 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253461516 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253463602 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253465549 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253467368 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.253468776 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.253470347 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.253471957 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.253473539 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.253475002 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.253476642 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274164692 ding.py", line 912 in _bootstrap
2024-08-11 19:32:50.964048 2024-08-11 11:55:11.274168234
2024-08-11 11:55:11.274170256 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.274172198 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.274174298 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.274176194 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:50.964051 2024-08-11 11:55:11.274177581
2024-08-11 11:55:11.274179352 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.274181204 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.274183077 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.274185071 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.274186912 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.274188866 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.274190860 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.274192657 File "/usr/lib/python3.9/multiprocessing/popen_open
2024-08-11 11:55:11.274194879 File "/usr/lib/python3.9/multiprocessing/fork.py", line 19 in __init__
2024-08-11 11:55:11.274196725 File "/usr/lib/pproythoncess.py", line 121 in start
2024-08-11 11:55:11.274198704 3.9/multiprocessing/context.py", line 277 in _Pop File "/opt/frigate/frigate/app.py", line 520 in staren
2024-08-11 11:55:11.274200151 File "/usr/lib/python3.9/t_camera_capture_processmultiprocessing/context.py"es
2024-08-11 11:55:11.274201529 File "/opt/fr, line 224 in _Popen
2024-08-11 11:55:11.274229328 File "/usr/lib/python3.igate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274231128 File "/opt/frigate/9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.274233047 File "/opt/frigfrigate/__main__.py", line 17 in <modulate/frigate/app.py", line 520 in start_camera_capture>
2024-08-11 11:55:11.274234723 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274236210 File "/usr/lie_processes
2024-08-11 11:55:11.274237803 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274239597 File "/opt/frigate/frigate/__mab/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274241125 in__.py", line 17 in <module>
2024-08-11 11:55:11.274242938 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274244966 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:52:28.333963890 [INFO] Preparing Frigate...
2024-08-11 11:52:28.428034208 [INFO] Starting Frigate...
2024-08-11 11:52:31.473068421 [2024-08-11 11:52:31] frigate.app INFO : Starting Frigate (0.14.0-da913d8)
2024-08-11 11:52:31.473215008 [2024-08-11 11:52:31] frigate.util.config INFO : Checking if frigate config needs migration...
2024-08-11 11:52:31.630129311 [2024-08-11 11:52:31] frigate.util.config INFO : frigate config does not need migration...
2024-08-11 11:52:31.795355696 [2024-08-11 11:52:31] peewee_migrate.logs INFO : Starting migrations
2024-08-11 11:52:31.796552171 [2024-08-11 11:52:31] peewee_migrate.logs INFO : There is nothing to migrate
2024-08-11 11:52:32.256063087 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 334
2024-08-11 11:52:32.265812745 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 343
2024-08-11 11:52:32.270464887 [2024-08-11 11:52:32] frigate.app INFO : go2rtc process pid: 98
2024-08-11 11:52:32.410373283 [2024-08-11 11:52:32] frigate.app INFO : Output process started: 368
2024-08-11 11:52:32.572213010 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for pasillo: 414
2024-08-11 11:52:32.581399367 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for oficina: 419
2024-08-11 11:52:32.591026308 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for cocina: 424
2024-08-11 11:52:32.601291819 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for salon: 440
2024-08-11 11:52:32.611198118 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for garaje: 449
2024-08-11 11:52:32.622241207 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for terraza: 457
2024-08-11 11:52:32.631618718 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for balcon: 470
2024-08-11 11:52:32.640493423 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for barbacoa: 478
2024-08-11 11:52:32.649235748 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for pasillo: 486
2024-08-11 11:52:32.658711180 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for oficina: 496
2024-08-11 11:52:32.666885366 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for cocina: 500
2024-08-11 11:52:32.676378982 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for salon: 505
2024-08-11 11:52:32.685478711 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for garaje: 508
2024-08-11 11:52:32.694301657 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for terraza: 514
2024-08-11 11:52:32.703496338 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for balcon: 517
2024-08-11 11:52:32.714428495 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for barbacoa: 522
2024-08-11 11:52:34.617561022 [2024-08-11 11:52:34] frigate.util.services ERROR : Unable to poll intel GPU stats: Failed to initialize PMU! (Operation not permitted)
2024-08-11 19:32:54.599556 2024-08-11 11:52:34.617565839
2024-08-11 11:52:34.993151558 [2024-08-11 11:52:32] detector.coral INFO : Starting detection process: 363
2024-08-11 11:52:34.996343808 [2024-08-11 11:52:32] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as usb
2024-08-11 11:52:34.996497097 [2024-08-11 11:52:34] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found
2024-08-11 11:55:09.227384168 Fatal Python error: Bus error
2024-08-11 19:32:54.599572 2024-08-11 11:55:09.227388803
2024-08-11 11:55:09.227473212 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.229679129 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.229683292 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.229685192 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.229689033 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.229690963 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599583 2024-08-11 11:55:11.230341559
2024-08-11 11:55:11.230344563 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230347224 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230349155 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230350994 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230382790 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599592 2024-08-11 11:55:11.230384270
2024-08-11 11:55:11.230386221 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230388199 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230417216 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230419411 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230421458 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230423268 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599601 2024-08-11 11:55:11.230424666
2024-08-11 11:55:11.230426389 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230428113 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230429901 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230453007 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471096 2024-08-11 11:55:11.230454408
2024-08-11 11:55:11.230456035 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230457879 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230459781 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230461604 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230463483 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230493871 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230495821 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230497729 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230499714 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230501502 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.230503342 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.230505209 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.230507018 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.230508895 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.230510607 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.230512394 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.230513914 Fatal Python error: Bus error
2024-08-11 19:32:54.471115 2024-08-11 11:55:11.230544344
2024-08-11 11:55:11.230546113 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.230547846 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.230549641 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.230551341 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.230553037 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230554832 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471125 2024-08-11 11:55:11.230556084
2024-08-11 11:55:11.230564874 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230884110 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230886766 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230888792 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230896304 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471133 2024-08-11 11:55:11.230902735
2024-08-11 11:55:11.230904118 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230905534 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230906933 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230908312 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230909690 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230911207 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339847 2024-08-11 11:55:11.230953037
2024-08-11 11:55:11.230974697 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230976351 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230978378 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230980276 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339854 2024-08-11 11:55:11.230981808
2024-08-11 11:55:11.230983379 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230985137 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230986920 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230988748 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230990474 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230992160 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230994087 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230995841 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230997630 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230999375 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231001070 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231002973 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231004586 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231006287 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231007965 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231009664 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231011040 Fatal Python error: Bus error
2024-08-11 19:32:54.339874 2024-08-11 11:55:11.231012298
2024-08-11 11:55:11.231013907 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231015551 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231017300 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231019052 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231068018 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231070254 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339884 2024-08-11 11:55:11.231071588
2024-08-11 11:55:11.231073299 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231075193 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231076930 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231078750 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231080476 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339893 2024-08-11 11:55:11.231081786
2024-08-11 11:55:11.231083482 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.231085356 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.231087232 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.231127199 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.231128998 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231130653 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212545 2024-08-11 11:55:11.231131917
2024-08-11 11:55:11.231133592 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.231135235 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.231137049 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231138804 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212553 2024-08-11 11:55:11.231140113
2024-08-11 11:55:11.231141792 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.231143666 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.231145384 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.231147165 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.231149037 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.231190560 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.231192505 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.231194393 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.231196154 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.231197899 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231199687 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231201536 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231203198 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231204881 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231206662 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231208447 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231209977 Fatal Python error: Bus error
2024-08-11 19:32:54.212572 2024-08-11 11:55:11.231211262
2024-08-11 11:55:11.231212827 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231568675 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231570779 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231572496 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231574239 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231575988 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212582 2024-08-11 11:55:11.231577322
2024-08-11 11:55:11.231579027 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231580741 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231582332 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231584060 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231585799 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212591 2024-08-11 11:55:11.231587118
2024-08-11 11:55:11.231588781 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.232779997 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.232824830 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.232826947 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.232828943 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232831000 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690537 2024-08-11 11:55:11.232832517
2024-08-11 11:55:11.232833986 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.232835634 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.232837278 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232838984 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690545 2024-08-11 11:55:11.232840314
2024-08-11 11:55:11.232841960 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.232843839 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.232845483 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.232847063 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.232848804 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.233157984 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.233217964 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.233399496 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.233883273 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.233892011 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.233893845 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.233895649 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.233897243 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.233898639 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.233900134 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.235603207 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.243120434 Fatal Python error: Bus error
2024-08-11 19:32:53.690564 2024-08-11 11:55:11.243123867
2024-08-11 11:55:11.243125713 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.243127556 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247062295 File "/usr/lib/python3.9/multiproceFatal Python error: Bus error
2024-08-11 19:32:53.690571 2024-08-11 11:55:11.247066017
2024-08-11 11:55:11.247067830 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247069641 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247071457 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247073098 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247074820 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247076383 File "/usr/lib/python3.9/threading.Fatal Python error: Bus error
2024-08-11 19:32:53.182592 2024-08-11 11:55:11.247077737
2024-08-11 11:55:11.247079387 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247081097 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247082972 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247084614 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247086364 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247088005 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182602 2024-08-11 11:55:11.247089281
2024-08-11 11:55:11.247090927 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247092690 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247094173 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247095973 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247097639 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182610 2024-08-11 11:55:11.247098907
2024-08-11 11:55:11.247100527 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247102324 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247104107 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247105718 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247107427 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247108954 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182617 2024-08-11 11:55:11.247110137
2024-08-11 11:55:11.247111741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.247113340 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.247115079 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247116761 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182622 2024-08-11 11:55:11.247117906
2024-08-11 11:55:11.247119564 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.247121457 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.247123160 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.247125032 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.247126871 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.247128499 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.247130344 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.247132462 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.247134354 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.247136256 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.247138141 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.247140176 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.247141885 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.247143734 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.247145525 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.247147398 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.247149034 ssing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247150933 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247152406 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247154054 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680442 2024-08-11 11:55:11.247155359
2024-08-11 11:55:11.247157227 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247159011 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247160934 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247162853 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247164816 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680453 2024-08-11 11:55:11.247165879
2024-08-11 11:55:11.247167605 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247169668 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247171316 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247172848 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247174452 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247176171 File "/usr/lib/python3.9/threapy", line 912 in _bootstrap
2024-08-11 19:32:52.680464 2024-08-11 11:55:11.247177684
2024-08-11 11:55:11.247179713 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247181761 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247183252 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247184825 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247186480 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680474 2024-08-11 11:55:11.247187750
2024-08-11 11:55:11.247189405 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247191407 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247193298 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247195334 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247197109 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253375610 File "/uFatal Python error: Bus error
2024-08-11 19:32:52.680485 2024-08-11 11:55:11.253378147
2024-08-11 11:55:11.253379965 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.253381659 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.253383499 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.253385195 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.253386832 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253388436 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680497 2024-08-11 11:55:11.253389757
2024-08-11 11:55:11.253391394 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.253393117 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.253394868 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.253396601 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253398317 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091655 2024-08-11 11:55:11.253399639
2024-08-11 11:55:11.253401289 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.253403114 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.253404915 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.253406643 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.253408330 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253410070 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091659 2024-08-11 11:55:11.253411288
2024-08-11 11:55:11.253412741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253414502 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253416561 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253418049 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091662 2024-08-11 11:55:11.253419299
2024-08-11 11:55:11.253420969 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253422866 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253424653 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253426727 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253428893 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253430815 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253432682 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253434642 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253436482 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253438809 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Psr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091667 2024-08-11 11:55:11.253440084
2024-08-11 11:55:11.253441794 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253443909 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253445781 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253447778 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091670 2024-08-11 11:55:11.253449123
2024-08-11 11:55:11.253450955 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253453019 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253454725 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253456282 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253457799 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253459590 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253461516 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253463602 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253465549 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253467368 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.253468776 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.253470347 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.253471957 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.253473539 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.253475002 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.253476642 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274164692 ding.py", line 912 in _bootstrap
2024-08-11 19:32:50.964048 2024-08-11 11:55:11.274168234
2024-08-11 11:55:11.274170256 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.274172198 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.274174298 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.274176194 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:50.964051 2024-08-11 11:55:11.274177581
2024-08-11 11:55:11.274179352 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.274181204 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.274183077 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.274185071 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.274186912 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.274188866 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.274190860 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.274192657 File "/usr/lib/python3.9/multiprocessing/popen_open
2024-08-11 11:55:11.274194879 File "/usr/lib/python3.9/multiprocessing/fork.py", line 19 in __init__
2024-08-11 11:55:11.274196725 File "/usr/lib/pproythoncess.py", line 121 in start
2024-08-11 11:55:11.274198704 3.9/multiprocessing/context.py", line 277 in _Pop File "/opt/frigate/frigate/app.py", line 520 in staren
2024-08-11 11:55:11.274200151 File "/usr/lib/python3.9/t_camera_capture_processmultiprocessing/context.py"es
2024-08-11 11:55:11.274201529 File "/opt/fr, line 224 in _Popen
2024-08-11 11:55:11.274229328 File "/usr/lib/python3.igate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274231128 File "/opt/frigate/9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.274233047 File "/opt/frigfrigate/__main__.py", line 17 in <modulate/frigate/app.py", line 520 in start_camera_capture>
2024-08-11 11:55:11.274234723 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274236210 File "/usr/lie_processes
2024-08-11 11:55:11.274237803 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274239597 File "/opt/frigate/frigate/__mab/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274241125 in__.py", line 17 in <module>
2024-08-11 11:55:11.274242938 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274244966 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:52:28.333963890 [INFO] Preparing Frigate...
2024-08-11 11:52:28.428034208 [INFO] Starting Frigate...
2024-08-11 11:52:31.473068421 [2024-08-11 11:52:31] frigate.app INFO : Starting Frigate (0.14.0-da913d8)
2024-08-11 11:52:31.473215008 [2024-08-11 11:52:31] frigate.util.config INFO : Checking if frigate config needs migration...
2024-08-11 11:52:31.630129311 [2024-08-11 11:52:31] frigate.util.config INFO : frigate config does not need migration...
2024-08-11 11:52:31.795355696 [2024-08-11 11:52:31] peewee_migrate.logs INFO : Starting migrations
2024-08-11 11:52:31.796552171 [2024-08-11 11:52:31] peewee_migrate.logs INFO : There is nothing to migrate
2024-08-11 11:52:32.256063087 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 334
2024-08-11 11:52:32.265812745 [2024-08-11 11:52:32] frigate.app INFO : Recording process started: 343
2024-08-11 11:52:32.270464887 [2024-08-11 11:52:32] frigate.app INFO : go2rtc process pid: 98
2024-08-11 11:52:32.410373283 [2024-08-11 11:52:32] frigate.app INFO : Output process started: 368
2024-08-11 11:52:32.572213010 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for pasillo: 414
2024-08-11 11:52:32.581399367 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for oficina: 419
2024-08-11 11:52:32.591026308 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for cocina: 424
2024-08-11 11:52:32.601291819 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for salon: 440
2024-08-11 11:52:32.611198118 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for garaje: 449
2024-08-11 11:52:32.622241207 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for terraza: 457
2024-08-11 11:52:32.631618718 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for balcon: 470
2024-08-11 11:52:32.640493423 [2024-08-11 11:52:32] frigate.app INFO : Camera processor started for barbacoa: 478
2024-08-11 11:52:32.649235748 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for pasillo: 486
2024-08-11 11:52:32.658711180 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for oficina: 496
2024-08-11 11:52:32.666885366 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for cocina: 500
2024-08-11 11:52:32.676378982 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for salon: 505
2024-08-11 11:52:32.685478711 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for garaje: 508
2024-08-11 11:52:32.694301657 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for terraza: 514
2024-08-11 11:52:32.703496338 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for balcon: 517
2024-08-11 11:52:32.714428495 [2024-08-11 11:52:32] frigate.app INFO : Capture process started for barbacoa: 522
2024-08-11 11:52:34.617561022 [2024-08-11 11:52:34] frigate.util.services ERROR : Unable to poll intel GPU stats: Failed to initialize PMU! (Operation not permitted)
2024-08-11 19:32:54.599556 2024-08-11 11:52:34.617565839
2024-08-11 11:52:34.993151558 [2024-08-11 11:52:32] detector.coral INFO : Starting detection process: 363
2024-08-11 11:52:34.996343808 [2024-08-11 11:52:32] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as usb
2024-08-11 11:52:34.996497097 [2024-08-11 11:52:34] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found
2024-08-11 11:55:09.227384168 Fatal Python error: Bus error
2024-08-11 19:32:54.599572 2024-08-11 11:55:09.227388803
2024-08-11 11:55:09.227473212 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.229679129 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.229683292 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.229685192 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.229689033 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.229690963 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599583 2024-08-11 11:55:11.230341559
2024-08-11 11:55:11.230344563 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230347224 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230349155 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230350994 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230382790 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599592 2024-08-11 11:55:11.230384270
2024-08-11 11:55:11.230386221 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230388199 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230417216 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230419411 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230421458 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230423268 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.599601 2024-08-11 11:55:11.230424666
2024-08-11 11:55:11.230426389 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230428113 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230429901 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230453007 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471096 2024-08-11 11:55:11.230454408
2024-08-11 11:55:11.230456035 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230457879 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230459781 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230461604 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230463483 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230493871 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230495821 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230497729 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230499714 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230501502 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.230503342 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.230505209 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.230507018 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.230508895 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.230510607 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.230512394 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.230513914 Fatal Python error: Bus error
2024-08-11 19:32:54.471115 2024-08-11 11:55:11.230544344
2024-08-11 11:55:11.230546113 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.230547846 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.230549641 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.230551341 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.230553037 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230554832 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471125 2024-08-11 11:55:11.230556084
2024-08-11 11:55:11.230564874 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.230884110 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.230886766 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.230888792 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230896304 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.471133 2024-08-11 11:55:11.230902735
2024-08-11 11:55:11.230904118 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.230905534 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.230906933 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.230908312 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.230909690 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230911207 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339847 2024-08-11 11:55:11.230953037
2024-08-11 11:55:11.230974697 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.230976351 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.230978378 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.230980276 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339854 2024-08-11 11:55:11.230981808
2024-08-11 11:55:11.230983379 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.230985137 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.230986920 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.230988748 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.230990474 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.230992160 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.230994087 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.230995841 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.230997630 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.230999375 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231001070 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231002973 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231004586 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231006287 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231007965 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231009664 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231011040 Fatal Python error: Bus error
2024-08-11 19:32:54.339874 2024-08-11 11:55:11.231012298
2024-08-11 11:55:11.231013907 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231015551 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231017300 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231019052 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231068018 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231070254 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339884 2024-08-11 11:55:11.231071588
2024-08-11 11:55:11.231073299 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231075193 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231076930 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231078750 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231080476 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.339893 2024-08-11 11:55:11.231081786
2024-08-11 11:55:11.231083482 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.231085356 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.231087232 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.231127199 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.231128998 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231130653 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212545 2024-08-11 11:55:11.231131917
2024-08-11 11:55:11.231133592 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.231135235 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.231137049 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231138804 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212553 2024-08-11 11:55:11.231140113
2024-08-11 11:55:11.231141792 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.231143666 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.231145384 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.231147165 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.231149037 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.231190560 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.231192505 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.231194393 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.231196154 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.231197899 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.231199687 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.231201536 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.231203198 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.231204881 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.231206662 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.231208447 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.231209977 Fatal Python error: Bus error
2024-08-11 19:32:54.212572 2024-08-11 11:55:11.231211262
2024-08-11 11:55:11.231212827 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.231568675 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.231570779 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.231572496 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.231574239 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231575988 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212582 2024-08-11 11:55:11.231577322
2024-08-11 11:55:11.231579027 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.231580741 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.231582332 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.231584060 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.231585799 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:54.212591 2024-08-11 11:55:11.231587118
2024-08-11 11:55:11.231588781 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.232779997 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.232824830 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.232826947 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.232828943 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232831000 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690537 2024-08-11 11:55:11.232832517
2024-08-11 11:55:11.232833986 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.232835634 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.232837278 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.232838984 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.690545 2024-08-11 11:55:11.232840314
2024-08-11 11:55:11.232841960 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.232843839 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.232845483 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.232847063 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.232848804 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.233157984 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.233217964 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.233399496 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.233883273 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.233892011 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.233893845 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.233895649 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.233897243 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.233898639 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.233900134 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.235603207 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.243120434 Fatal Python error: Bus error
2024-08-11 19:32:53.690564 2024-08-11 11:55:11.243123867
2024-08-11 11:55:11.243125713 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.243127556 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247062295 File "/usr/lib/python3.9/multiproceFatal Python error: Bus error
2024-08-11 19:32:53.690571 2024-08-11 11:55:11.247066017
2024-08-11 11:55:11.247067830 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247069641 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247071457 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247073098 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247074820 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247076383 File "/usr/lib/python3.9/threading.Fatal Python error: Bus error
2024-08-11 19:32:53.182592 2024-08-11 11:55:11.247077737
2024-08-11 11:55:11.247079387 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.247081097 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.247082972 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247084614 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247086364 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247088005 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182602 2024-08-11 11:55:11.247089281
2024-08-11 11:55:11.247090927 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247092690 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247094173 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247095973 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247097639 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182610 2024-08-11 11:55:11.247098907
2024-08-11 11:55:11.247100527 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247102324 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247104107 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247105718 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247107427 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247108954 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182617 2024-08-11 11:55:11.247110137
2024-08-11 11:55:11.247111741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.247113340 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.247115079 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247116761 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:53.182622 2024-08-11 11:55:11.247117906
2024-08-11 11:55:11.247119564 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.247121457 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.247123160 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.247125032 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.247126871 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.247128499 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.247130344 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.247132462 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.247134354 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.247136256 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.247138141 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.247140176 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.247141885 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.247143734 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.247145525 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.247147398 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.247149034 ssing/queues.py", line 233 in _feed
2024-08-11 11:55:11.247150933 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.247152406 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247154054 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680442 2024-08-11 11:55:11.247155359
2024-08-11 11:55:11.247157227 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247159011 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247160934 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247162853 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247164816 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680453 2024-08-11 11:55:11.247165879
2024-08-11 11:55:11.247167605 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247169668 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247171316 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247172848 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247174452 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247176171 File "/usr/lib/python3.9/threapy", line 912 in _bootstrap
2024-08-11 19:32:52.680464 2024-08-11 11:55:11.247177684
2024-08-11 11:55:11.247179713 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.247181761 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.247183252 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.247184825 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.247186480 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680474 2024-08-11 11:55:11.247187750
2024-08-11 11:55:11.247189405 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.247191407 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.247193298 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.247195334 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.247197109 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253375610 File "/uFatal Python error: Bus error
2024-08-11 19:32:52.680485 2024-08-11 11:55:11.253378147
2024-08-11 11:55:11.253379965 Thread 0x000014dac56236c0 (most recent call first):
2024-08-11 11:55:11.253381659 File "/usr/lib/python3.9/threading.py", line 312 in wait
2024-08-11 11:55:11.253383499 File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2024-08-11 11:55:11.253385195 File "/usr/lib/python3.9/threading.py", line 892 in run
2024-08-11 11:55:11.253386832 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253388436 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.680497 2024-08-11 11:55:11.253389757
2024-08-11 11:55:11.253391394 Current thread 0x000014dac54226c0 (most recent call first):
2024-08-11 11:55:11.253393117 File "/opt/frigate/frigate/video.py", line 119 in capture_frames
2024-08-11 11:55:11.253394868 File "/opt/frigate/frigate/video.py", line 346 in run
2024-08-11 11:55:11.253396601 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253398317 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091655 2024-08-11 11:55:11.253399639
2024-08-11 11:55:11.253401289 Thread 0x000014dac52216c0 (most recent call first):
2024-08-11 11:55:11.253403114 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 261 in wait
2024-08-11 11:55:11.253404915 File "/usr/lib/python3.9/multiprocessing/synchronize.py", line 349 in wait
2024-08-11 11:55:11.253406643 File "/opt/frigate/frigate/video.py", line 195 in run
2024-08-11 11:55:11.253408330 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253410070 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091659 2024-08-11 11:55:11.253411288
2024-08-11 11:55:11.253412741 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253414502 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253416561 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253418049 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091662 2024-08-11 11:55:11.253419299
2024-08-11 11:55:11.253420969 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253422866 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253424653 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253426727 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253428893 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253430815 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253432682 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253434642 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253436482 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253438809 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Psr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091667 2024-08-11 11:55:11.253440084
2024-08-11 11:55:11.253441794 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.253443909 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.253445781 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.253447778 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:52.091670 2024-08-11 11:55:11.253449123
2024-08-11 11:55:11.253450955 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.253453019 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.253454725 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.253456282 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.253457799 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.253459590 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.253461516 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.253463602 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2024-08-11 11:55:11.253465549 File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2024-08-11 11:55:11.253467368 File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2024-08-11 11:55:11.253468776 File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.253470347 File "/opt/frigate/frigate/app.py", line 520 in start_camera_capture_processes
2024-08-11 11:55:11.253471957 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.253473539 File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2024-08-11 11:55:11.253475002 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.253476642 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274164692 ding.py", line 912 in _bootstrap
2024-08-11 19:32:50.964048 2024-08-11 11:55:11.274168234
2024-08-11 11:55:11.274170256 Thread 0x000014da977176c0 (most recent call first):
2024-08-11 11:55:11.274172198 File "/opt/frigate/frigate/log.py", line 95 in run
2024-08-11 11:55:11.274174298 File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2024-08-11 11:55:11.274176194 File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2024-08-11 19:32:50.964051 2024-08-11 11:55:11.274177581
2024-08-11 11:55:11.274179352 Thread 0x000014daf45e4740 (most recent call first):
2024-08-11 11:55:11.274181204 File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2024-08-11 11:55:11.274183077 File "/usr/lib/python3.9/threading.py", line 1033 in join
2024-08-11 11:55:11.274185071 File "/opt/frigate/frigate/video.py", line 383 in capture_camera
2024-08-11 11:55:11.274186912 File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2024-08-11 11:55:11.274188866 File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2024-08-11 11:55:11.274190860 File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2024-08-11 11:55:11.274192657 File "/usr/lib/python3.9/multiprocessing/popen_open
2024-08-11 11:55:11.274194879 File "/usr/lib/python3.9/multiprocessing/fork.py", line 19 in __init__
2024-08-11 11:55:11.274196725 File "/usr/lib/pproythoncess.py", line 121 in start
2024-08-11 11:55:11.274198704 3.9/multiprocessing/context.py", line 277 in _Pop File "/opt/frigate/frigate/app.py", line 520 in staren
2024-08-11 11:55:11.274200151 File "/usr/lib/python3.9/t_camera_capture_processmultiprocessing/context.py"es
2024-08-11 11:55:11.274201529 File "/opt/fr, line 224 in _Popen
2024-08-11 11:55:11.274229328 File "/usr/lib/python3.igate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274231128 File "/opt/frigate/9/multiprocessing/process.py", line 121 in start
2024-08-11 11:55:11.274233047 File "/opt/frigfrigate/__main__.py", line 17 in <modulate/frigate/app.py", line 520 in start_camera_capture>
2024-08-11 11:55:11.274234723 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274236210 File "/usr/lie_processes
2024-08-11 11:55:11.274237803 File "/opt/frigate/frigate/app.py", line 696 in start
2024-08-11 11:55:11.274239597 File "/opt/frigate/frigate/__mab/python3.9/runpy.py", line 197 in _run_module_as_main
2024-08-11 11:55:11.274241125 in__.py", line 17 in <module>
2024-08-11 11:55:11.274242938 File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2024-08-11 11:55:11.274244966 File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main Operating systemUNRAID Install methodDocker CLI Network connectionWired Camera make and modelTapo C310, Tapo C320WS, Tapo C100, Tapo C110, Tapo C210, Tapo C225 Any other information that may be helpful |
Beta Was this translation helpful? Give feedback.
Answered by
hawkeye217
Aug 11, 2024
Replies: 1 comment
-
This is not a bug. You need to increase your SHM size. See the Frigate documentation: https://docs.frigate.video/troubleshooting/faqs#fatal-python-error-bus-error |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yayitazale
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not a bug. You need to increase your SHM size. See the Frigate documentation: https://docs.frigate.video/troubleshooting/faqs#fatal-python-error-bus-error