blakeblackshear / frigate

NVR with realtime local object detection for IP cameras
https://frigate.video
MIT License
18.59k stars 1.69k forks source link

[Support]: #5025

Closed tmjpugh closed 1 year ago

tmjpugh commented 1 year ago

Describe the problem you are having

Some of my cameras are showing "no frames have been received, check error logs" and Jsmpeg stream stop functioning for the camera that is showing the error.

my South01 and South02 camera are same make/model/firmware. only 1 of the 2 camera are affected. After reboot the error may switch between the 2 camera. Problem exits in both beta 1 and beta 2 version. No error showing in go2rtc log

Version

0.12.0-53d39a1 and 0.12.0-0dbf909

Frigate config file

###############################
#           MQTT               #
################################
mqtt:
  host: mosquitto
  port: 1883
  topic_prefix: frigate
  client_id: frigate
  user: frigate
  password: frigate
  # Optional: interval in seconds for publishing stats (default: shown below)
  stats_interval: 60

################################
#         DETECTORS:      #
################################
detectors:
  coral_pci:
    type: edgetpu
    device: pci

################################
#           GLOBAL             #
################################
birdseye:
  enabled: True
  width: 2592
  height: 1944
  # Optional: Encoding quality of the mpeg1 feed  1-31. Lower quality feeds utilize less CPU resources.
  quality: 1
  # Optional: Mode of the view. Available options are: objects, motion, and continuous
  mode: continuous

restream: 
  birdseye: true
#live:
#  #height: 500
#  quality: 1

################################
#          CAMERAS             #
################################
cameras:
#Each role can only be assigned to one input per camera. The options for roles are as follows:
###detect   Main feed for object detection
###clips    Clips of events from objects detected in the detect feed. docs
###record   Saves 60 second segments of the video feed. docs
###restream Broadcast as an restream feed for other services to consume. doc

  #######################################
  #             SOUTH-01                #
  #######################################
  Frigate_South01:
    ffmpeg:
      inputs:
       # SD Stream
       - path: rtsp://admin:admin@192.168.20.111:554/cam/realmonitor?channel=1&subtype=1
         roles:
           - detect
       # HD STREAM
       - path: rtsp://admin:admin@192.168.20.111:554/cam/realmonitor?channel=1&subtype=0
         roles:
           - restream
       # RE Stream  
       - path: rtsp://localhost:8554/Frigate_South01
         roles:
           - record

    detect:
       width: 704
       height: 480
       fps: 20
       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

#    best_image_timeout: 60

    record:
      enabled: True
      retain_days: 10
      events:
        retain:
          default: 30

    objects:
      track:
        - animal
        - car
        - motorcycle
        - person
    #  filters:
    #    car:
    #      min_score: 0.8
    #      threshold: 0.9

    snapshots:
      # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
      enabled: True
      # Optional: print a timestamp on the snapshots (default: shown below)
      timestamp: False
      # Optional: draw bounding box on the snapshots (default: shown below)
      bounding_box: True
      # Optional: crop the snapshot (default: shown below)
      crop: False
      # Optional: height to resize the snapshot to (default: original size)
      #height: 175
      # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
      required_zones: []
      # Optional: Camera override for retention settings (default: global values)
      retain:
        # Required: Default retention days (default: shown below)
        default: 10
        # Optional: Per object retention days
        #objects:
          #person: 15

    motion:
      # Optional: (default: 100) Minimum size in pixels of resized motion image that counts as motion
      # Increasing prevent small area motion being detected. Decreasing make detection sensitive to smaller moving o>
      contour_area: 50

  #######################################
  #             SOUTH-02                #
  #######################################
  Frigate_South02:
    ffmpeg:
      inputs:
       # SD Stream
       - path: rtsp://admin:admin@192.168.20.149:554/cam/realmonitor?channel=1&subtype=1
         roles:
           - detect
       # HD STREAM
       - path: rtsp://admin:admin@192.168.20.149:554/cam/realmonitor?channel=1&subtype=0
         roles:
           - restream
       # RE Stream  
       - path: rtsp://localhost:8554/Frigate_South02
         roles:
           - record

    detect:
       width: 704
       height: 480
       #width: 2592
       #height: 1944
       fps: 20
       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

#    best_image_timeout: 60

    record:
      enabled: True
      retain_days: 10
      events:
        retain:
          default: 30

    objects:
      track:
        - animal
        - car
        - motorcycle
        - person
    #  filters:
    #    car:
    #      min_score: 0.8
    #      threshold: 0.9

    snapshots:
      # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
      enabled: True
      # Optional: print a timestamp on the snapshots (default: shown below)
      timestamp: False
      # Optional: draw bounding box on the snapshots (default: shown below)
      bounding_box: True
      # Optional: crop the snapshot (default: shown below)
      crop: False
      # Optional: height to resize the snapshot to (default: original size)
      #height: 175
      # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
      required_zones: []
      # Optional: Camera override for retention settings (default: global values)
      retain:
        # Required: Default retention days (default: shown below)
        default: 10
        # Optional: Per object retention days
        #objects:
          #person: 15

    motion:
      # Optional: (default: 100) Minimum size in pixels of resized motion image that counts as motion
      # Increasing prevent small area motion being detected. Decreasing make detection sensitive to smaller moving o>
      contour_area: 50

Relevant log output

GO2RTC LOG

2023-01-11 10:29:53.640397713  16:29:53.640 INF go2rtc version 0.1-rc.6 linux/amd64
2023-01-11 10:29:53.641004933  16:29:53.640 INF [api] listen addr=:1984
2023-01-11 10:29:53.641160141  16:29:53.641 INF [rtsp] listen addr=:8554
2023-01-11 10:29:53.641742216  16:29:53.641 INF [webrtc] listen addr=:8555
2023-01-11 10:29:53.641934671  16:29:53.641 INF [srtp] listen addr=:8443
2023-01-11 10:30:06.353047063  16:30:06.328 WRN github.com/AlexxIT/go2rtc/cmd/rtsp/rtsp.go:202 > error=EOF
2023-01-11 10:34:09.113175280  16:34:09.112 WRN github.com/AlexxIT/go2rtc/cmd/streams/producer.go:105 > error=EOF

NGINX LOG (jsmpeg no workin)

2023-01-11 10:58:13.454943709  10.88.10.239 - - [11/Jan/2023:10:58:13 -0600] "GET /live/jsmpeg/Frigate_Gate03 HTTP/1.1" 101 4 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:108.0) Gecko/20100101 Firefox/108.0" "-"
'''

### FFprobe output from your camera

```shell
SOUTH01
fprobe version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2007-2021 the FFmpeg developers
  built with gcc 11 (Ubuntu 11.2.0-19ubuntu1)
  configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
  libavutil      56. 70.100 / 56. 70.100
  libavcodec     58.134.100 / 58.134.100
  libavformat    58. 76.100 / 58. 76.100
  libavdevice    58. 13.100 / 58. 13.100
  libavfilter     7.110.100 /  7.110.100
  libswscale      5.  9.100 /  5.  9.100
  libswresample   3.  9.100 /  3.  9.100
  libpostproc    55.  9.100 / 55.  9.100

SOUTH02
ffprobe version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2007-2021 the FFmpeg developers
  built with gcc 11 (Ubuntu 11.2.0-19ubuntu1)
  configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
  libavutil      56. 70.100 / 56. 70.100
  libavcodec     58.134.100 / 58.134.100
  libavformat    58. 76.100 / 58. 76.100
  libavdevice    58. 13.100 / 58. 13.100
  libavfilter     7.110.100 /  7.110.100
  libswscale      5.  9.100 /  5.  9.100
  libswresample   3.  9.100 /  3.  9.100
  libpostproc    55.  9.100 / 55.  9.100

Frigate stats

{"Frigate_Attic":{"camera_fps":10.6,"capture_pid":574,"detection_fps":6.0,"ffmpeg_pid":580,"pid":558,"process_fps":5.4,"skipped_fps":0.0},"Frigate_Doorbell":{"camera_fps":14.2,"capture_pid":578,"detection_fps":1.69,"ffmpeg_pid":584,"pid":559,"process_fps":10.5,"skipped_fps":0.0},"Frigate_FrontDr":{"camera_fps":20.1,"capture_pid":583,"detection_fps":5.9,"ffmpeg_pid":590,"pid":560,"process_fps":18.7,"skipped_fps":0.0},"Frigate_Gate01":{"camera_fps":10.5,"capture_pid":589,"detection_fps":6.37,"ffmpeg_pid":598,"pid":561,"process_fps":5.1,"skipped_fps":0.0},"Frigate_Gate03":{"camera_fps":10.1,"capture_pid":595,"detection_fps":7.6,"ffmpeg_pid":606,"pid":562,"process_fps":10.2,"skipped_fps":0.0},"Frigate_Goat":{"camera_fps":2.5,"capture_pid":603,"detection_fps":9.2,"ffmpeg_pid":614,"pid":563,"process_fps":0.5,"skipped_fps":0.0},"Frigate_Goat2":{"camera_fps":4.8,"capture_pid":610,"detection_fps":5.8,"ffmpeg_pid":623,"pid":565,"process_fps":4.7,"skipped_fps":0.0},"Frigate_MasterPatio":{"camera_fps":20.0,"capture_pid":616,"detection_fps":0.0,"ffmpeg_pid":633,"pid":567,"process_fps":19.9,"skipped_fps":0.0},"Frigate_Pool":{"camera_fps":20.1,"capture_pid":621,"detection_fps":0.0,"ffmpeg_pid":630,"pid":568,"process_fps":19.8,"skipped_fps":0.0},"Frigate_Pool2":{"camera_fps":20.0,"capture_pid":627,"detection_fps":1.7,"ffmpeg_pid":640,"pid":570,"process_fps":19.4,"skipped_fps":0.0},"Frigate_South01":{"camera_fps":20.3,"capture_pid":634,"detection_fps":0.7,"ffmpeg_pid":652,"pid":571,"process_fps":20.0,"skipped_fps":0.0},"Frigate_South02":{"camera_fps":9.2,"capture_pid":635,"detection_fps":3.6,"ffmpeg_pid":651,"pid":572,"process_fps":3.5,"skipped_fps":0.0},"Frigate_xtra1":{"camera_fps":20.1,"capture_pid":647,"detection_fps":0.0,"ffmpeg_pid":658,"pid":573,"process_fps":20.0,"skipped_fps":0.0},"cpu_usages":{"%Cpu(s):":{"cpu":"id,","mem":"1.1"},"1":{"cpu":"0.0","mem":"0.0"},"124":{"cpu":"0.0","mem":"0.0"},"125":{"cpu":"0.0","mem":"0.0"},"126":{"cpu":"0.0","mem":"0.0"},"127":{"cpu":"0.3","mem":"0.0"},"128":{"cpu":"0.0","mem":"0.0"},"135":{"cpu":"0.0","mem":"0.0"},"15":{"cpu":"0.0","mem":"0.0"},"155":{"cpu":"0.0","mem":"0.0"},"17":{"cpu":"0.0","mem":"0.0"},"183":{"cpu":"0.0","mem":"0.0"},"218":{"cpu":"0.0","mem":"0.0"},"24":{"cpu":"0.0","mem":"0.0"},"25":{"cpu":"0.0","mem":"0.0"},"255":{"cpu":"0.0","mem":"0.0"},"2802":{"cpu":"0.0","mem":"0.0"},"292":{"cpu":"0.0","mem":"0.0"},"3261":{"cpu":"6.0","mem":"0.0"},"327":{"cpu":"0.3","mem":"0.0"},"33":{"cpu":"0.0","mem":"0.0"},"3644":{"cpu":"87.5","mem":"0.1"},"3646":{"cpu":"0.3","mem":"0.0"},"3650":{"cpu":"0.3","mem":"0.0"},"3655":{"cpu":"0.0","mem":"0.0"},"544":{"cpu":"0.0","mem":"0.1"},"550":{"cpu":"2.0","mem":"0.0"},"551":{"cpu":"3.0","mem":"0.2"},"552":{"cpu":"74.1","mem":"0.2"},"557":{"cpu":"0.0","mem":"0.0"},"558":{"cpu":"0.0","mem":"0.2"},"559":{"cpu":"0.0","mem":"0.2"},"560":{"cpu":"2.3","mem":"0.2"},"561":{"cpu":"0.0","mem":"0.2"},"562":{"cpu":"12.6","mem":"0.2"},"563":{"cpu":"0.0","mem":"0.1"},"564":{"cpu":"0.0","mem":"0.0"},"565":{"cpu":"12.3","mem":"0.2"},"566":{"cpu":"0.0","mem":"0.0"},"567":{"cpu":"2.0","mem":"0.2"},"568":{"cpu":"2.0","mem":"0.2"},"569":{"cpu":"0.0","mem":"0.0"},"570":{"cpu":"2.0","mem":"0.2"},"571":{"cpu":"2.7","mem":"0.2"},"572":{"cpu":"0.0","mem":"0.2"},"573":{"cpu":"2.7","mem":"0.2"},"574":{"cpu":"0.0","mem":"0.0"},"575":{"cpu":"0.0","mem":"0.0"},"578":{"cpu":"0.0","mem":"0.0"},"579":{"cpu":"0.0","mem":"0.1"},"583":{"cpu":"3.3","mem":"0.1"},"588":{"cpu":"0.0","mem":"0.0"},"589":{"cpu":"0.0","mem":"0.0"},"590":{"cpu":"3.0","mem":"0.1"},"595":{"cpu":"1.7","mem":"0.1"},"596":{"cpu":"0.0","mem":"0.0"},"597":{"cpu":"5.3","mem":"0.0"},"603":{"cpu":"0.0","mem":"0.0"},"604":{"cpu":"1.3","mem":"0.0"},"605":{"cpu":"0.0","mem":"0.0"},"606":{"cpu":"2.3","mem":"0.1"},"610":{"cpu":"0.7","mem":"0.1"},"613":{"cpu":"0.0","mem":"0.0"},"616":{"cpu":"3.0","mem":"0.1"},"618":{"cpu":"1.3","mem":"0.0"},"621":{"cpu":"3.0","mem":"0.1"},"623":{"cpu":"8.0","mem":"0.2"},"624":{"cpu":"15.9","mem":"0.1"},"627":{"cpu":"3.3","mem":"0.1"},"629":{"cpu":"0.0","mem":"0.0"},"630":{"cpu":"2.7","mem":"0.1"},"633":{"cpu":"2.3","mem":"0.1"},"634":{"cpu":"3.3","mem":"0.1"},"635":{"cpu":"0.0","mem":"0.0"},"640":{"cpu":"3.7","mem":"0.1"},"644":{"cpu":"0.0","mem":"0.0"},"647":{"cpu":"3.7","mem":"0.1"},"648":{"cpu":"2.3","mem":"0.0"},"650":{"cpu":"2.3","mem":"0.0"},"652":{"cpu":"2.7","mem":"0.1"},"654":{"cpu":"40.9","mem":"0.3"},"658":{"cpu":"4.7","mem":"0.1"},"664":{"cpu":"1.3","mem":"0.0"},"680":{"cpu":"1.3","mem":"0.0"},"681":{"cpu":"1.3","mem":"0.0"},"683":{"cpu":"1.0","mem":"0.0"},"705":{"cpu":"1.3","mem":"0.0"},"712":{"cpu":"6.0","mem":"0.0"},"713":{"cpu":"2.7","mem":"0.0"},"715":{"cpu":"1.7","mem":"0.0"},"717":{"cpu":"2.3","mem":"0.0"},"718":{"cpu":"2.0","mem":"0.0"},"719":{"cpu":"4.3","mem":"0.0"},"72":{"cpu":"0.0","mem":"0.0"},"722":{"cpu":"2.7","mem":"0.0"},"724":{"cpu":"8.0","mem":"0.0"},"74":{"cpu":"0.0","mem":"0.0"},"75":{"cpu":"0.0","mem":"0.0"},"76":{"cpu":"0.0","mem":"0.0"},"77":{"cpu":"0.0","mem":"0.0"},"78":{"cpu":"0.0","mem":"0.0"},"79":{"cpu":"0.0","mem":"0.0"},"80":{"cpu":"12.6","mem":"0.3"},"81":{"cpu":"0.0","mem":"0.0"},"83":{"cpu":"15.3","mem":"0.0"},"84":{"cpu":"0.0","mem":"0.0"},"85":{"cpu":"0.0","mem":"0.0"},"MiB":{"cpu":"56360.5","mem":"avail"},"PID":{"cpu":"%CPU","mem":"%MEM"},"Tasks:":{"cpu":"stopped,","mem":"5"},"top":{"cpu":"users,","mem":"load"}},"detection_fps":48.55,"detectors":{"coral_pci":{"detection_start":0.0,"inference_speed":9.54,"pid":551}},"service":{"latest_version":"0.11.1","storage":{"/dev/shm":{"free":40.0,"mount_type":"tmpfs","total":67.1,"used":27.1},"/media/frigate/clips":{"free":1806803.8,"mount_type":"xfs","total":5998469.2,"used":4191665.4},"/media/frigate/recordings":{"free":1806803.8,"mount_type":"xfs","total":5998469.2,"used":4191665.4},"/tmp/cache":{"free":945.0,"mount_type":"tmpfs","total":1000.0,"used":55.0}},"temperatures":{"apex_0":46.55},"uptime":709,"version":"0.12.0-0dbf909"}}

Operating system

Debian

Install method

Docker CLI

Coral version

PCIe

Network connection

Wired

Camera make and model

Amcrest/various

Any other information that may be helpful

Docker does not run in host mode I connect go2rtc/frigate on docker network

13 total cameras in system 2 model amcrest, wansview, and another cheap brand. issue is not isoloted to any specific model and affect all

NickM-27 commented 1 year ago

Need more information, if you are seeing no frames have been received, check error logs then the errors will be in the frigate logs.

tmjpugh commented 1 year ago

frigate log

2023-01-11 10:50:44.470114721  [2023-01-11 10:50:44] frigate.app                    INFO    : Starting Frigate (0.12.0-0dbf909)
2023-01-11 10:50:44.639398877  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.642294265  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.644263331  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.646117950  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.649198567  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.651312528  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.653662499  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.656264820  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.657938628  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.659775701  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.661572898  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.663342202  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.667204107  [2023-01-11 10:50:44] frigate.config                 WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
2023-01-11 10:50:44.695916678  [2023-01-11 10:50:44] peewee_migrate                 INFO    : Starting migrations
2023-01-11 10:50:45.281443020  [2023-01-11 10:50:44] peewee_migrate                 INFO    : There is nothing to migrate
2023-01-11 10:50:45.288418722  [2023-01-11 10:50:45] ws4py                          INFO    : Using epoll
2023-01-11 10:50:45.369280087  [2023-01-11 10:50:45] frigate.app                    INFO    : Output process started: 550
2023-01-11 10:50:45.370307173  [2023-01-11 10:50:45] detector.coral_pci             INFO    : Starting detection process: 549
2023-01-11 10:50:45.372333658  [2023-01-11 10:50:45] ws4py                          INFO    : Using epoll
2023-01-11 10:50:45.378709475  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Attic: 557
2023-01-11 10:50:45.383986904  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Doorbell: 558
2023-01-11 10:50:45.388585027  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_FrontDr: 560
2023-01-11 10:50:45.394988919  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Gate01: 561
2023-01-11 10:50:45.400308246  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Gate03: 563
2023-01-11 10:50:45.405553610  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Goat: 565
2023-01-11 10:50:45.411921976  [2023-01-11 10:50:45] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as pci
2023-01-11 10:50:45.419167488  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Goat2: 566
2023-01-11 10:50:45.419296887  [2023-01-11 10:50:45] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2023-01-11 10:50:45.419420579  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_MasterPatio: 577
2023-01-11 10:50:45.425212784  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Pool: 578
2023-01-11 10:50:45.432320695  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_Pool2: 579
2023-01-11 10:50:45.438570120  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_South01: 580
2023-01-11 10:50:45.444849586  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_South02: 581
2023-01-11 10:50:45.449931886  [2023-01-11 10:50:45] frigate.app                    INFO    : Camera processor started for Frigate_xtra1: 583
2023-01-11 10:50:45.457512622  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Attic: 585
2023-01-11 10:50:45.463157769  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Doorbell: 588
2023-01-11 10:50:45.469948588  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_FrontDr: 593
2023-01-11 10:50:45.476883003  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Gate01: 599
2023-01-11 10:50:45.485551219  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Gate03: 607
2023-01-11 10:50:45.498431355  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Goat: 615
2023-01-11 10:50:45.504993656  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Goat2: 628
2023-01-11 10:50:45.553076995  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_MasterPatio: 633
2023-01-11 10:50:45.561796242  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Pool: 644
2023-01-11 10:50:45.569427656  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_Pool2: 651
2023-01-11 10:50:45.577888609  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_South01: 660
2023-01-11 10:50:45.588182101  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_South02: 673
2023-01-11 10:50:45.596938150  [2023-01-11 10:50:45] frigate.app                    INFO    : Capture process started for Frigate_xtra1: 692
2023-01-11 10:50:45.821837176  'FLASK_ENV' is deprecated and will not be used in Flask 2.3. Use 'FLASK_DEBUG' instead.
2023-01-11 10:50:45.874549689  'FLASK_ENV' is deprecated and will not be used in Flask 2.3. Use 'FLASK_DEBUG' instead.
2023-01-11 10:50:45.874557001  'FLASK_ENV' is deprecated and will not be used in Flask 2.3. Use 'FLASK_DEBUG' instead.
2023-01-11 10:50:53.071096253  Fatal Python error: Bus error
2023-01-11 10:50:53.071103950  
2023-01-11 10:50:55.073192697  Thread 0x00007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.073200890    File "/usr/lib/python3.9/threading.py", line 312 in wait
2023-01-11 10:50:55.073203098    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2023-01-11 10:50:55.073211194    File "/usr/lib/python3.9/threading.py", line 892 in run
2023-01-11 10:50:55.073213414    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073235981    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073238104  
2023-01-11 10:50:55.073239747  Thread 0x00007fec755f76c0 (most recent call first):
2023-01-11 10:50:55.073242176    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.073243936    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073245929    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073252621  
2023-01-11 10:50:55.073275265  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.073277289    File "/opt/frigate/frigate/video.py", line 178 in capture_frames
2023-01-11 10:50:55.073279642    File "/opt/frigate/frigate/video.py", line 373 in run
2023-01-11 10:50:55.073281412    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073295158    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073296867  
2023-01-11 10:50:55.073298556  Thread 0x00007fec873e46c0 (most recent call first):
2023-01-11 10:50:55.073300513    File "/opt/frigate/frigate/video.py", line 248 in run
2023-01-11 10:50:55.073302444    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073304115    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073318378  
2023-01-11 10:50:55.073320174  Thread 0x00007fec8634e6c0 (most recent call first):
2023-01-11 10:50:55.073321773    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.073323510    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073325431    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073326802  
2023-01-11 10:50:55.073328410  Thread 0x00007fec8b9ba740 (most recent call first):
2023-01-11 10:50:55.073330153    File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2023-01-11 10:50:55.073349747    File "/usr/lib/python3.9/threading.py", line 1033 in join
2023-01-11 10:50:55.073351788    File "/opt/frigate/frigate/video.py", line 404 in capture_camera
2023-01-11 10:50:55.073353537    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2023-01-11 10:50:55.073355357    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2023-01-11 10:50:55.073357283    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2023-01-11 10:50:55.073359027    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2023-01-11 10:50:55.073360756    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2023-01-11 10:50:55.073362511    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2023-01-11 10:50:55.073364334    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2023-01-11 10:50:55.073366062    File "/opt/frigate/frigate/app.py", line 286 in start_camera_capture_processes
2023-01-11 10:50:55.073367653    File "/opt/frigate/frigate/app.py", line 368 in start
2023-01-11 10:50:55.073369336    File "/opt/frigate/frigate/__main__.py", line 16 in <module>
2023-01-11 10:50:55.073370999    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2023-01-11 10:50:55.073390123    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2023-01-11 10:50:55.073391952  Fatal Python error: Fatal Python error: Bus error
2023-01-11 10:50:55.073393271  
2023-01-11 10:50:55.073394657  Bus error
2023-01-11 10:50:55.073396031  
2023-01-11 10:50:55.073397799  Thread 0xThread 0x00007fec72df66c000007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.073399285   (most recent call first):
2023-01-11 10:50:55.073401166    File "/usr/lib/py  File th"o/nu3s.r9//ltihbr/epaydtihnogn.3p.y9/"t, line h312r in eawdaiintg
2023-01-11 10:50:55.073402874  .py  File "", line /312u in swra/ilti
2023-01-11 10:50:55.073404843  b  File /p"y/tuhsorn/3l.i9b//mpuyltthiopnr3o.c9e/smsuilntgi/pqruoecueesss.ipnyg"/, line q233u in eu_efse.epdy
2023-01-11 10:50:55.073406359  "  File , line "233/ in u_sfre/eldi
2023-01-11 10:50:55.073408159  b/  File p"y/tuhsorn/3l.i9b//tphyrtehaodni3n.g9./ptyh"r, line e892a in dirnugn.
2023-01-11 10:50:55.073409735  p  File y""/, line u892s in r/rluinb
2023-01-11 10:50:55.073411649  /  File p"y/tuhsorn/3l.i9b//tphyrtehaodni3n.g9./ptyh"r, line e954a in d_ibnogo.tpsyt"r, line a954p in __ibnonoetrs
2023-01-11 10:50:55.073436543  t  File ra"p/_uisnrn/elri
2023-01-11 10:50:55.073438701  b/  File p"y/tuhsorn/3l.i9b//tphyrtehaodni3n.g9/.tphyr"e, line a912d in i_nbgo.optys"t, line r912a in p_
2023-01-11 10:50:55.073440025  b
2023-01-11 10:50:55.073441680  oThread 0xo00007fec755f76c0t (most recent call first):
2023-01-11 10:50:55.073443061  strap
2023-01-11 10:50:55.073444417    File 
2023-01-11 10:50:55.073446065  "Thread 0x/00007fec755f76c0o (most recent call first):
2023-01-11 10:50:55.073447801  pt/fri  File g"a/toep/tf/rfirgiagtaet/el/ofgr.ipgya"te, line /70l in orgu.np
2023-01-11 10:50:55.073449303  y  File ""/, line u70s in rr/ulni
2023-01-11 10:50:55.073451494  b  File /"p/yutshro/nl3i.b9//ptyhtrheoand3i.n9g/.tphyr"e, line a954d in i_nbgo.optys"t, line r954a in p__bionontesrt
2023-01-11 10:50:55.073452968  r  File a"p/_uisnrn/elri
2023-01-11 10:50:55.073454771  b  File /"p/yutshro/nl3i.b9//ptyhtrheoand3i.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073456089  
2023-01-11 10:50:55.073457701  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.073459414    File "/opt/frigate/frigate/video.py", line 178 in capture_frames
2023-01-11 10:50:55.073461057    File "/opt/frigate/frigate/video.py", line 373 in run
2023-01-11 10:50:55.073462769    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073464640    File "/usr/lib/python3.n9g/.tphyr"e, line a912d in i_nbgo.optys"t, line r912a in p_
2023-01-11 10:50:55.073465998  bo
2023-01-11 10:50:55.073467671  oCurrent thread 0xt00007fec77df86c0s (most recent call first):
2023-01-11 10:50:55.073469087  trap  File 
2023-01-11 10:50:55.073470471  "
2023-01-11 10:50:55.073472094  /Thread 0xo00007fec873e46c0p (most recent call first):
2023-01-11 10:50:55.073473969  t  File /"f/roipgta/tfer/ifgraitgea/tfer/ivgiadteeo/.vpiyd"e, line o178. in pcya"p, line t248u in rreu_nf
2023-01-11 10:50:55.073475403  ra  File m"e/su
2023-01-11 10:50:55.073477329  sr  File /"l/iobp/tp/yftrhiogna3t.e9//ftrhirgeaatdei/nvgi.dpeyo"., line p954y in "_, line b373o in ortusnt
2023-01-11 10:50:55.073478814  ra  File p"_/iunsnre/rl
2023-01-11 10:50:55.073480795  ib  File /"p/yutshro/nl3i.b9//ptyhtrheoand3i.n9g/.tphyr"e, line a954d in i_nbgo.optys"t, line r912a in p__bionontesrt
2023-01-11 10:50:55.073504020  r  File a"p/
2023-01-11 10:50:55.073505652  u
2023-01-11 10:50:55.073507252  sThread 0xr00007fec8634e6c0/ (most recent call first):
2023-01-11 10:50:55.073509133  l  File i"b//oppytt/hforni3g.a9t/et/hfrreiagdaitneg/.lpoyg"., line p912y in "_, line b70o in ortusnt
2023-01-11 10:50:55.073510532  r  File a"p/
2023-01-11 10:50:55.073511853  u
2023-01-11 10:50:55.073513449  sThread 0xr/00007fec873e46c0l (most recent call first):
2023-01-11 10:50:55.073515330  i  File b"//poyptth/ofnr3i.g9a/tteh/rferaidgiantge./pvyi"d, line e954o in ._pbyo"ot, line s248t in rraupn_
2023-01-11 10:50:55.073516761  i  File n"n/eurs
2023-01-11 10:50:55.073518759  r  File /"l/iubs/rp/yltihbo/np3y.t9h/otnh3r.e9a/dtihnrge.apdyi"n, line g954. in p_yb"o, line o912t in s_tbroaopt_sitnrnaepr
2023-01-11 10:50:55.073520050  
2023-01-11 10:50:55.073521363  
2023-01-11 10:50:55.073522904  Thread 0x00007fec8b9ba740 (most recent call first):
2023-01-11 10:50:55.073540002    File   File ""//uussrr//lliibb//ppyytthhoonn33..99//tthhrreeaaddiinngg..ppyy"", line , line 1049912 in  in __wbaoiott_sftorra_pt
2023-01-11 10:50:55.073541533  s
2023-01-11 10:50:55.073543144  tThread 0xat00007fec8634e6c0e (most recent call first):
2023-01-11 10:50:55.073544552  _  File l"o/cokp
2023-01-11 10:50:55.073546292  t  File /"f/ruisgra/tlei/bf/rpiygtahtoen/3l.o9g/.tphyr"e, line a70d in irnugn.
2023-01-11 10:50:55.073547799  py  File "", line /1033u in srj/oliinb
2023-01-11 10:50:55.073549721  /  File py"t/hoopnt3/.f9r/itgharteea/dfirnigg.aptye"/, line v954i in d_eboo.optys"tr, line a404p in _cianpnteurr
2023-01-11 10:50:55.073551169  e  File _"c/aumserr/al
2023-01-11 10:50:55.073552999  i  File b"//puystrh/olni3b./9p/ytthhroena3d.i9n/gm.uplyt"i, line p912r in o_cbeosostisntgr/appr
2023-01-11 10:50:55.073554322  o
2023-01-11 10:50:55.073555928  cThread 0xes00007fec8b9ba740s (most recent call first):
2023-01-11 10:50:55.073557436  .  File p"y/"u, line s108r in /rluinb
2023-01-11 10:50:55.073559175  /pyt  File h"o/nu3s.9/threading.py", line 1049 in _waitr_f/olri_bt/sptyatthe_lock
2023-01-11 10:50:55.073591965    File "/usr/lib/python3.9/threading.py", line 1033 in join
2023-01-11 10:50:55.073593936    File "/opt/frigate/frigate/video.py", line 404 in capture_camera
2023-01-11 10:50:55.073595899    File "/usorn/3l.i9b//mpuyltthiopnr3o.c9e/smsuilntgi/pprroocceessssi.npgy/p"r, line o315c in e_sbso.optys"t, line r108a in pr
2023-01-11 10:50:55.073597219  un
2023-01-11 10:50:55.073599434    File   File ""//uussrr//lliibb//ppyytthhoonn33..99//mmuullttiipprroocceessssiinngg//pproopceens_sf.opryk"., line p315y in "_b, line o71o in t_sltaruanpc
2023-01-11 10:50:55.073600781  h
2023-01-11 10:50:55.073602914    File   File ""//uussrr//lliibb//ppyytthhoonn33..99//mmuullttiipprroocceessssiinngg//ppooppeenn__ffoorrkk..ppyy"", line , line 1971 in  in ___ilnaiutn_c_h
2023-01-11 10:50:55.073604193  
2023-01-11 10:50:55.073606288    File   File ""//uussrr//lliibb//ppyytthhoonn33..99//mmuullttiipprroocceessssiinngg//pcoopnetne_xfto.rpky."p, line y277" in , line _19P in o_p_einn
2023-01-11 10:50:55.073607705  i  File t"_/_u
2023-01-11 10:50:55.073609694  sr/l  File i"b//upsyrt/hloinb3/.p9y/tmhuolnt3i.p9r/omcuelstsiipnrgo/cceosnstienxgt/.cpoyn"t, line e224x in t_.Ppoyp"e, line n277
2023-01-11 10:50:55.073641382   in _Po  File p"e/nu
2023-01-11 10:50:55.073643705  s  File r"//luisbr//plyitbh/opny3t.h9o/nm3u.l9t/impurlotciepsrsoicnegs/spirnogc/ecsosn.tpeyx"t, line .121p in ys"t, line a224r in t_
2023-01-11 10:50:55.073645062  Pop  File e"n/
2023-01-11 10:50:55.073647142  opt/f  File r"i/guastre//lfirbi/gpaytteh/oanp3p..9p/ym"u, line l286t in isptraorcte_scsaimnegr/ap_rcoacpetsusr.ep_yp"r, line o121c in esstsaerst
2023-01-11 10:50:55.073648431  
2023-01-11 10:50:55.073650299    File "  File /o"p/to/pftr/ifgraitgea/tfer/ifgraitgea/taep/pa.pppy."p, line y368" in , line s286t in asrtta
2023-01-11 10:50:55.073651833  rt_camera_captur  File e"_/porpotc/efsrsiegsa
2023-01-11 10:50:55.073653674  t  File e"//forpitg/aftrei/g_a_tmea/ifnr_i_g.aptye"/a, line p16p in .<pmyo"d, line u368l in es>t
2023-01-11 10:50:55.073655074  art
2023-01-11 10:50:55.073656928    File "/usr/lib/p  File yt"h/oonp3t./9f/rriugnaptye./pfyr"ig, line a87t in e_/r_u_nm_aciond_e_
2023-01-11 10:50:55.073658463  .py", line 16 in <mod  File u"l/eu>s
2023-01-11 10:50:55.073660417  r/lib/p  File yt"h/ouns3r./9l/irbu/nppyyt.hpoyn"3, line .1979 in /_rruunnp_ym.opdyu"l, line e87_ in as__rmuani_nc
2023-01-11 10:50:55.073661759  ode
2023-01-11 10:50:55.073663457    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2023-01-11 10:50:55.073664949  Fatal Python error: Bus error
2023-01-11 10:50:55.073697003  
2023-01-11 10:50:55.073698892  Thread 0x00007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.073700475    File "/usr/lib/python3.9/threading.py", line 312 in wait
2023-01-11 10:50:55.073702163    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2023-01-11 10:50:55.073703783    File "/usr/lib/python3.9/threading.py", line 892 in run
2023-01-11 10:50:55.073705515    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073707183    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073708491  
2023-01-11 10:50:55.073710074  Thread 0x00007fec755f76c0 (most recent call first):
2023-01-11 10:50:55.073753018    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.073755130    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073756774    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073758083  
2023-01-11 10:50:55.073759707  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.073761232    File "/Fatal Python error: opBus errort
2023-01-11 10:50:55.073762563  
2023-01-11 10:50:55.073764293  /frigate/frigate/video.pThread 0xy00007fec72df66c0" (most recent call first):
2023-01-11 10:50:55.073765884  , line   File 178" in /cuasprt/ulrieb_/fpryatmheosn
2023-01-11 10:50:55.073767575  3  File ."9//otphtr/efardiignagt.ep/yf"r, line i312g in atwea/ivti
2023-01-11 10:50:55.073769143  d  File e"o/.upsyr"/, line l373i in br/upny
2023-01-11 10:50:55.073771047  t  File h"on/3u.s9r//mluilbt/ippyrtohcoens3s.i9n/gt/hqrueeuaedsi.npyg"., line p233y in "_, line f954e in e_db
2023-01-11 10:50:55.073772612  o  File o"t/sutsrra/pl_iibn/npeyrth
2023-01-11 10:50:55.073774249  o  File n"3/.u9s/rt/hrleiabd/ipnygt.hpoyn"3, line .8929 in /rtuhnr
2023-01-11 10:50:55.073775929  e  File a"d/iunsgr./plyi"b, line /912p in y_tbhooont3s.9t/rtahpr
2023-01-11 10:50:55.073777261  e
2023-01-11 10:50:55.073778858  aThread 0xdi00007fec873e46c0n (most recent call first):
2023-01-11 10:50:55.073780515  g  File ."p/yo"p, line t954/ in f_broiogtastter/afpr_iignanteer/
2023-01-11 10:50:55.073782098  v  File i"d/euos.rp/yl"ib, line /248p in yrtuhno
2023-01-11 10:50:55.073783807  n  File 3".9//utshrr/elaidbi/npgy.tpyh"o, line n9123 in ._9b/otohtrsetardaipn
2023-01-11 10:50:55.073785093  g
2023-01-11 10:50:55.073786738  .Thread 0xp00007fec755f76c0y (most recent call first):
2023-01-11 10:50:55.073788299  ", line 954 in   File _"b/oooptts/trap_innefrr
2023-01-11 10:50:55.073789958  igate  File /"f/ruisgrat/el/ilobg/.ppyyt"h, line o70n in 3r.u9n/
2023-01-11 10:50:55.073791644  t  File h"r/euasdri/nligb./ppyy"t, line h912o in n_3.b9o/otthsrteraadp
2023-01-11 10:50:55.073792923  
2023-01-11 10:50:55.073794550  Thread 0xi00007fec8634e6c0n (most recent call first):
2023-01-11 10:50:55.073796199  g  File ."p/yo"p, line t954 in /_fbrooitgsattrea/p_firningeart
2023-01-11 10:50:55.073797815  e  File /"l/ougs.rp/yl"i, line b70/ in pryutnh
2023-01-11 10:50:55.073799593  o  File n"3./9u/strh/rleiabdi/npgy.tphoyn"3, line .9129 in /_tbohortesatdrianpg
2023-01-11 10:50:55.073800915  .
2023-01-11 10:50:55.073802533  pCurrent thread 0xy00007fec77df86c0" (most recent call first):
2023-01-11 10:50:55.073804246  , line 954 in   File _"b/oooptt/sftrriagpa_tien/nferri
2023-01-11 10:50:55.073806002  g  File a"t/eu/vsird/eloi.bp/yp"y, line 178t in hcoanp3t.u9r/et_hfrraemaedsi
2023-01-11 10:50:55.073807662  n  File g"./poyp"t, line /912f in r_igbaotoet/sftrriagpa
2023-01-11 10:50:55.073809018  t
2023-01-11 10:50:55.073810621  eThread 0x/00007fec8b9ba740v (most recent call first):
2023-01-11 10:50:55.073812152  i  File de"o/.upsyr"/, line l373i in br/upny
2023-01-11 10:50:55.073814133  t  File h"o/nu3s.r9//ltihbr/epaydtihnogn.3p.y9"/t, line h1049r in ea_dwianigt._pfyo"r, line _954t in _sbtoaottes_tlroacp_ki
2023-01-11 10:50:55.073815518  n  File ne"r/
2023-01-11 10:50:55.073817427  u  File s"r//ulsirb//lpiybt/hpoynt3h.o9n/3t.h9r/ethadrienagdi.npgy."p, line y1033" in , line 912j in o_ibno
2023-01-11 10:50:55.073818809  ot  File st"r/apo
2023-01-11 10:50:55.073820185  p
2023-01-11 10:50:55.073821789  tThread 0x/00007fec873e46c0f (most recent call first):
2023-01-11 10:50:55.073823652  r  File i"g/aotpet//ffrriiggaattee//vfirdiegoa.tpe/yv"i, line d404eo in .cpayp"t, line u248r in er_ucna
2023-01-11 10:50:55.073825075  m  File e"r/au
2023-01-11 10:50:55.073826967  sr  File /"l/iub/spry/tlhiobn/3p.y9t/hthorne3a.d9i/nmgu.plyt"i, line p954r in o_cbeosotssitnrga/pp_rioncneesrs
2023-01-11 10:50:55.073828485  .py"  File ", line /108u in srru/nl
2023-01-11 10:50:55.073830295  ib/p  File y"t/huosnr3/.l9i/bt/hpryetahdoinn3g..9p/ym"u, line l912 in t_ibporootcsetsrsaipn
2023-01-11 10:50:55.073831613  g
2023-01-11 10:50:55.073833195  /Thread 0xp00007fec8634e6c0r (most recent call first):
2023-01-11 10:50:55.073834830  o  File c"e/sosp.tp/yf"ri, line g315a in te_/bforoitgsattrea/pl
2023-01-11 10:50:55.073836336  og.py  File ", line "70/ in ursurn/
2023-01-11 10:50:55.073838365  l  File i"b//upsyrt/hloinb3/.p9y/tmhuolnt3i.p9r/otcheresasdiinngg/.ppoyp"e, line n954_ in f_obroko.tpsyt"ra, line p71_ in i_nlnearu
2023-01-11 10:50:55.073839735  n  File c"h/
2023-01-11 10:50:55.073841599  usr  File /"l/iubs/pry/tlhiobn/3p.y9t/htohnr3e.a9d/inmgu.lptyi"p, line r912o in c_ebsosoitnstgr/appo
2023-01-11 10:50:55.073842911  p
2023-01-11 10:50:55.073844515  eThread 0xn00007fec8b9ba740_ (most recent call first):
2023-01-11 10:50:55.073846156  f  File o"r/ku.spry/"l, line ib19/ in p_y_tihnoni3t._9_/
2023-01-11 10:50:55.073847901  threa  File d"i/nug.spry/"l, line iFatal Python error: 1049b in /Bus error_
2023-01-11 10:50:55.073849179  
2023-01-11 10:50:55.073850916  pwyatihto_nfo3r._9t/smtualtThread 0xtei00007fec755f76c0_p (most recent call first):
2023-01-11 10:50:55.073852310  lro  File occ"ke
2023-01-11 10:50:55.073854204  /s  File us"si/rnu/gslr/i/cblo/inpbyt/tephxyottnh.3op.ny93"/., line t9h/277tr in he_raPedaoidnpigen.ngp.
2023-01-11 10:50:55.073855799  py  File y""", line /, line u1033312s in  in rj/owliianb
2023-01-11 10:50:55.073857162  i  File /t"p
2023-01-11 10:50:55.073859339  /yo  File tph"to//nfu3rs.ir9g//almtiebu//flprtyiitgpharotone3c/.ev9si/sdmieunolg.tp/iypc"or, line on404ct in eecxsatsp.itpunyrge"/_, line qc224uae in mu_ePeroasp
2023-01-11 10:50:55.073860779  .e  File pn"y
2023-01-11 10:50:55.073862353  /"u, line s233  File r in /"_l/fiuebs/erpd/y
2023-01-11 10:50:55.073864485  lt  File ih"bo//nup3sy.rt9/h/olmniu3bl/.tp9iy/ptmrhuoolcnte3is.sp9ir/notgch/erpsresoaicdneigsn/sgp..rppoyyc"e", line s, line 108892s in  in .rpruuynn"
2023-01-11 10:50:55.073865773  
2023-01-11 10:50:55.073867325  , line   File 121  File " in "/s/tuuassrrrt//
2023-01-11 10:50:55.073869685  lli  File ib"/b/p/oypptytht/ohfnor3ni.3g9.a/9tm/eut/lhftrrieipagrdaoictneegs/.sapipynp"g./, line pp954yr in "o_, line cbeo286so in sts.stptayrr"ta, line _p315c in _a_imbneonroetars_
2023-01-11 10:50:55.073871094  tc  File ra"ap/ptu
2023-01-11 10:50:55.073872691  surr/el_  File ip"br//oupcsyerts/hsloeinsb3
2023-01-11 10:50:55.073874561  /.  File p9"y//ttohphotrne/3af.dr9ii/nmggua.ltpteyi/"pfr, line roi912c in gea_stsbeio/noagtp/sppt.orppayep"n
2023-01-11 10:50:55.073875857  _
2023-01-11 10:50:55.073877573  , line fCurrent thread 0x368o00007fec77df86c0 in r (most recent call first):
2023-01-11 10:50:55.073879021  sk  File t."ap/yro"tp, line t
2023-01-11 10:50:55.073880504  71/ in f_rliaguantce  File h/
2023-01-11 10:50:55.073882551  "f/r  File oi"pg/tau/stfrer/i/lgviaibtd/eep/oyft.rhpiogyna"3t, line .e1789/ in /_cm_aumplattiuinrp_er__o.fcperysa"sm, line i16en in sg
2023-01-11 10:50:55.073884017  </  File pm"oo/pdoeupnlt_e/f>f
2023-01-11 10:50:55.073885696  orrikg.ap  File ty"e"/, line /u19fs in rr_i/_gliianbti/etp/_yv_ti
2023-01-11 10:50:55.073887327  hdoeno  File .3"p./y9u/"sr, line ru373/n in lpiryb.u/pnpyy
2023-01-11 10:50:55.073888913  "t  File , line h"87o/ in nu_3rs.ur9n//_lmcuiolbdt/eip
2023-01-11 10:50:55.073890817  pyrtohcoens3s.  File i9n"/g/t/uhcsroren/atdleiixnbtg/..pppyyyt""h, line o, line 277n954 in 3 in _._P9ob/poreount
2023-01-11 10:50:55.073892365  ns  File tp"ry/a.upsp_ryi/"nlni, line eb197r/ in 
2023-01-11 10:50:55.073893996  p_y  File rut"nh/_ounms3or.d/9ul/limebu/_lpatysit_phmroaonic3ne.
2023-01-11 10:50:55.073895696  9ss/itnhgr/ecaodnitnegx.t.ppyy"", line , line 912224 in  in __bPooopetns
2023-01-11 10:50:55.073897040  trap
2023-01-11 10:50:55.073898394    File 
2023-01-11 10:50:55.073900048  "Thread 0x/00007fec873e46c0u (most recent call first):
2023-01-11 10:50:55.073901891  sr  File /"l/iob/ppty/tfhroing3a.t9e//mfurlitgiaptreo/cveisdseion.gp/yp"ro, line ce248s in sr.upny
2023-01-11 10:50:55.073903417  "  File , line "121/ in usstra/rlti
2023-01-11 10:50:55.073905400  b/  File p"yt/hoopnt3/.f9r/itgharteea/dfiringga.tpey/"a, line p954p in ._pbyo"o, line t286s in tsrtaapr_ti_ncnaemre
2023-01-11 10:50:55.073906953  ra  File _"c/aupstru/rlei_bp/rpoyctehsosnes3
2023-01-11 10:50:55.073908716  .  File 9/"t/horpeta/dfirnigg.aptey/"f, line r912i in g_abtoeo/tasptpr.appy
2023-01-11 10:50:55.073910007  "
2023-01-11 10:50:55.073911643  , line Thread 0x36800007fec8634e6c0 in  (most recent call first):
2023-01-11 10:50:55.073913025  start  File 
2023-01-11 10:50:55.073914762  "/opt/frigate  File /f"r/iogpatt/ef/rliogga.tpey/"fr, line i70g in artuen/
2023-01-11 10:50:55.073916402  _  File _"m/auisnr_/_l.ipby/"p, line y16t in h<omno3d.u9l/et>h
2023-01-11 10:50:55.073918119  reading  File ."p/yu"s, line r954/ in l_ibbo/optystthroan3p._9i/nrnunepry
2023-01-11 10:50:55.073919656  .  File p"y/"u, line s87r in /l_irubn/_pcyotdheo
2023-01-11 10:50:55.073921336  n3.9/thread  File i"n/gu.spry/"l, line ib912/ in p_ybtohootns3t.r9a/pr
2023-01-11 10:50:55.073922653  u
2023-01-11 10:50:55.073924251  nThread 0xp00007fec8b9ba740y (most recent call first):
2023-01-11 10:50:55.073925951  .  File py""/, line u197s in r_/rluinb_/mpoydtuhloen_3a.s9_/mtahirne
2023-01-11 10:50:55.073927482  ading.py", line 1049 in _wait_for_tstate_lock
2023-01-11 10:50:55.073929114    File "/usr/lib/python3.9/threading.py", line 1033 in join
2023-01-11 10:50:55.073930766    File "/opt/frigate/frigate/video.py", line 404 in capture_camera
2023-01-11 10:50:55.073932486    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2023-01-11 10:50:55.073934251    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2023-01-11 10:50:55.073935971    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2023-01-11 10:50:55.073937708    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2023-01-11 10:50:55.073939414    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2023-01-11 10:50:55.073941157    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2023-01-11 10:50:55.073942883    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2023-01-11 10:50:55.073944597    File "/opt/frigate/frigate/app.py", line 286 in start_camera_capture_processes
2023-01-11 10:50:55.073946182    File "/opt/frigate/frigate/app.py", line 368 in start
2023-01-11 10:50:55.073947843    File "/opt/frigate/frigate/__main__.py", line 16 in <module>
2023-01-11 10:50:55.073949446    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2023-01-11 10:50:55.073951142    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2023-01-11 10:50:55.073952629  Fatal Python error: Bus error
2023-01-11 10:50:55.073953919  
2023-01-11 10:50:55.073955466  Thread 0x00007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.073957088    File "/usr/lib/python3.9/threading.py", line 312 in wait
2023-01-11 10:50:55.073958812    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2023-01-11 10:50:55.073960437    File "/usr/lib/python3.9/threading.py", line 892 in run
2023-01-11 10:50:55.073962179    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073963812    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073965109  
2023-01-11 10:50:55.073966682  Thread 0x00007fec755f76c0 (most recent call first):
2023-01-11 10:50:55.073968262    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.073969928    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073971597    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073972889  
2023-01-11 10:50:55.073974498  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.073976191    File "/opt/frigate/frigate/video.py", line 178 in capture_frames
2023-01-11 10:50:55.073977822    File "/opt/frigate/frigate/video.py", line 373 in run
2023-01-11 10:50:55.073979514    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.073981169    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.073982475  
2023-01-11 10:50:55.073984051  Thread 0x00007fec873e46c0 (most recent call first):
2023-01-11 10:50:55.073985677    File "/opt/frigate/frigate/video.py", line 248 in run
2023-01-11 10:50:55.073987368    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074019280    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074020894  
2023-01-11 10:50:55.074022515  Thread 0x00007fec8634e6c0 (most recent call first):
2023-01-11 10:50:55.074024123    File "/opt/frigate/fFatal Python error: Bus error
2023-01-11 10:50:55.074025430  
2023-01-11 10:50:55.074027020  Thread 0x00007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.074028629    File "/usr/lib/python3.9/threading.py", line 312 in wait
2023-01-11 10:50:55.074030295    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2023-01-11 10:50:55.074031938    File "/usr/lib/python3.9/threading.py", line 892 in run
2023-01-11 10:50:55.074033646    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074035301    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074036593  
2023-01-11 10:50:55.074038180  Thread 0x00007fec755f76c0 (most recent call first):
2023-01-11 10:50:55.074039806    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.074041478    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074043144    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074044450  
2023-01-11 10:50:55.074046123  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.074047767    File "/opt/frigate/frigate/video.py", line 178 in capture_frames
2023-01-11 10:50:55.074049369    File "/opt/frigate/frigate/video.py", line 373 in run
2023-01-11 10:50:55.074051056    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074052693    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074053961  
2023-01-11 10:50:55.074055547  Thread 0x00007fec873e46c0 (most recent call first):
2023-01-11 10:50:55.074057141    File "/opt/frigate/frigate/video.py", line 248 in run
2023-01-11 10:50:55.074058835    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074060479    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074061736  
2023-01-11 10:50:55.074063292  Thread 0x00007fec8634e6c0 (most recent call first):
2023-01-11 10:50:55.074064866    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.074066576    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074068221    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074069510  
2023-01-11 10:50:55.074071166  Thread 0x00007fec8b9ba740 (most recent call first):
2023-01-11 10:50:55.074072910    File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2023-01-11 10:50:55.074074533    File "/usr/lib/python3.9/threading.py", line 1033 in join
2023-01-11 10:50:55.074076238    File "/opt/frigate/frigate/video.py", line 404 in capture_camera
2023-01-11 10:50:55.074077930    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2023-01-11 10:50:55.074079690    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrapr
2023-01-11 10:50:55.074081276  igate  File /"l/ougs.rp/yl"i, line b70/ in pryutnh
2023-01-11 10:50:55.074083213  o  File n"3/.u9s/rm/ullitbi/ppyrtohcoens3s.i9n/gt/hproepaedni_nfgo.rpyk"., line p954y in "_, line b71o in ot_sltaruanpc_hi
2023-01-11 10:50:55.074084609  nne  File r
2023-01-11 10:50:55.074086547  "  File /"u/surs/rl/ilbi/bp/yptyhtohno3n.39./9m/utlhtriepardioncge.spsyi"n, line g912/ in p_obpoeont_sftorrakp.
2023-01-11 10:50:55.074087869  p
2023-01-11 10:50:55.074089450  yThread 0x"00007fec8b9ba740 (most recent call first):
2023-01-11 10:50:55.074090962  , line   File 19" in /_u_sirn/ilti_b_/p
2023-01-11 10:50:55.074092853  ython  File 3"./9u/strh/relaidbi/npgy.tphyo"n, line 31049 in ._9w/amiutl_tfioprr_otcsetsastien_gl/occokn
2023-01-11 10:50:55.074094459  t  File e"x/tu.spry/l"i, line b277/ in py_tPhoopne3n.
2023-01-11 10:50:55.074096124  9/  File t"h/ruesard/ilngi.bp/yp"y, line t1033h in ojno3i.n9
2023-01-11 10:50:55.074098022  /  File m"u/lotpitp/frroicgeastsei/nfgr/icgoatnet/evxitd.eop.yp"y, line "224, line  in 404_ in Pcoappetnu
2023-01-11 10:50:55.074099459  re_cam  File e"r/au
2023-01-11 10:50:55.074101495  s  File r/"l/iubs/r/plyitbh/opny3t.h9o/nm3u.l9t/impurlotciepsrsoicnegs/spirnogc/epsrso.cpeyss"., line p121y in "s, line t108a in rrtu
2023-01-11 10:50:55.074102833  n
2023-01-11 10:50:55.074105078    File "/  File o"p/tu/sfrr/ilgiabt/ep/yftrhiogna3t.9e//mauplpt.ippyr"o, line c286e in ssstianrgt/_prcoacmeesrsa._pyc"a, line p315t in u_rbeo_optrsotcreasps
2023-01-11 10:50:55.074106410  es
2023-01-11 10:50:55.074108284    File   File ""//oupstr//flriibg/aptyet/hforni3g.a9t/em/ulatpipp.rpoyc"es, line s368i in nsgt/aprotpe
2023-01-11 10:50:55.074109752  n_fork.py", line 71 in _launch
2023-01-11 10:50:55.074111724    File "  File /"o/puts/rf/rliigba/tpey/tfhroing3a.t9e//mu_l_tmiapirno_c_e.spsiyn"g, line /16po in p<emn_ofdourlke.>p
2023-01-11 10:50:55.074113245  y", line 19 in _  File _"in/iuts_r_/
2023-01-11 10:50:55.074115065  lib/p  File y"t/huosnr3/.l9i/br/upnyptyh.opny3".9/multip, line ro87c in e_srsuinng_/ccoondtee
2023-01-11 10:50:55.074116571  xt.py", line 277 in _P  File o"p/euns
2023-01-11 10:50:55.074118548  r  File /"l/iubsr//plyitbh/opny3t.h9o/n3r.u9n/pmyu.lptiyp"r, line o197c in es_sriunng_/mcoodnutelxet_.apsy_"m, line a224i in n_
2023-01-11 10:50:55.074119973  Popen
2023-01-11 10:50:55.074121713    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2023-01-11 10:50:55.074123470    File "/opt/frigate/frigate/app.py", line 286 in start_camera_capture_processes
2023-01-11 10:50:55.074125101    File "/opt/frigate/frigate/app.py", line 368 in start
2023-01-11 10:50:55.074126748    File "/opt/frigate/frigate/__main__.py", line 16 in <module>
2023-01-11 10:50:55.074128370    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2023-01-11 10:50:55.074130070    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2023-01-11 10:50:55.074131527  Fatal Python error: Bus error
2023-01-11 10:50:55.074132810  
2023-01-11 10:50:55.074134348  Thread 0x00007fec72df66c0 (most recent call first):
2023-01-11 10:50:55.074135942    File "/usr/lib/python3.9/threading.py", line 312 in wait
2023-01-11 10:50:55.074137638    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2023-01-11 10:50:55.074139273    File "/usr/lib/python3.9/threading.py", line 892 in run
2023-01-11 10:50:55.074140988    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074142619    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074143921  
2023-01-11 10:50:55.074145493  Thread 0x00007fec755f76c0 (most recent call first):
2023-01-11 10:50:55.074147114    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.074148801    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074150439    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074151727  
2023-01-11 10:50:55.074153361  Current thread 0x00007fec77df86c0 (most recent call first):
2023-01-11 10:50:55.074155068    File "/opt/frigate/frigate/video.py", line 178 in capture_frames
2023-01-11 10:50:55.074156679    File "/opt/frigate/frigate/video.py", line 373 in run
2023-01-11 10:50:55.074158382    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074160028    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074161340  
2023-01-11 10:50:55.074162905  Thread 0x00007fec873e46c0 (most recent call first):
2023-01-11 10:50:55.074164522    File "/opt/frigate/frigate/video.py", line 248 in run
2023-01-11 10:50:55.074166222    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074167854    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074169145  
2023-01-11 10:50:55.074170722  Thread 0x00007fec8634e6c0 (most recent call first):
2023-01-11 10:50:55.074172362    File "/opt/frigate/frigate/log.py", line 70 in run
2023-01-11 10:50:55.074174068    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2023-01-11 10:50:55.074175722    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2023-01-11 10:50:55.074177007  
2023-01-11 10:50:55.074178587  Thread 0x00007fec8b9ba740 (most recent call first):
2023-01-11 10:50:55.074180290    File "/usr/lib/python3.9/threading.py", line 1049 in _wait_for_tstate_lock
2023-01-11 10:50:55.074181939    File "/usr/lib/python3.9/threading.py", line 1033 in join
2023-01-11 10:50:55.074183596    File "/opt/frigate/frigate/video.py", line 404 in capture_camera
2023-01-11 10:50:55.074185303    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2023-01-11 10:50:55.074187060    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2023-01-11 10:50:55.074188774    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2023-01-11 10:50:55.074190522    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2023-01-11 10:50:55.074192228    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2023-01-11 10:50:55.074193946    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2023-01-11 10:50:55.074195630    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2023-01-11 10:50:55.074197357    File "/opt/frigate/frigate/app.py", line 286 in start_camera_capture_processes
2023-01-11 10:50:55.074198963    File "/opt/frigate/frigate/app.py", line 368 in start
2023-01-11 10:50:55.074200606    File "/opt/frigate/frigate/__main__.py", line 16 in <module>
2023-01-11 10:50:55.074202234    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2023-01-11 10:50:55.074203891    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2023-01-11 10:51:12.570912977  [2023-01-11 10:51:12] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:34906]
2023-01-11 10:51:30.296434391  [2023-01-11 10:51:30] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:34906]
2023-01-11 10:51:30.475206168  [2023-01-11 10:51:30] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:54458]
2023-01-11 10:51:44.988383117  [2023-01-11 10:51:44] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:46444]
2023-01-11 10:52:45.047649416  [2023-01-11 10:52:45] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:46444]
2023-01-11 10:52:50.455480551  [2023-01-11 10:52:50] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:48596]
2023-01-11 10:52:59.143698870  [2023-01-11 10:52:59] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:54458]
2023-01-11 10:53:50.496017550  [2023-01-11 10:53:50] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:48596]
2023-01-11 10:53:56.385921701  [2023-01-11 10:53:56] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:40632]
2023-01-11 10:54:56.444017453  [2023-01-11 10:54:56] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:40632]
2023-01-11 10:55:02.363093795  [2023-01-11 10:55:02] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:57074]
2023-01-11 10:56:02.420760400  [2023-01-11 10:56:02] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:57074]
2023-01-11 10:56:08.382863449  [2023-01-11 10:56:08] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:34312]
2023-01-11 10:57:08.401782583  [2023-01-11 10:57:08] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:34312]
2023-01-11 10:57:14.408926755  [2023-01-11 10:57:14] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:58546]
2023-01-11 10:58:06.740735136  [2023-01-11 10:58:06] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:58546]
2023-01-11 10:58:06.944933758  [2023-01-11 10:58:06] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:36014]
2023-01-11 10:58:07.082338169  [2023-01-11 10:58:07] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:52292]
2023-01-11 10:58:10.811361770  [2023-01-11 10:58:10] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:52292]
2023-01-11 10:58:10.812700893  [2023-01-11 10:58:10] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:36014]
2023-01-11 10:58:10.985999148  [2023-01-11 10:58:10] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:36022]
2023-01-11 10:58:11.177030262  [2023-01-11 10:58:11] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:52308]
2023-01-11 10:58:13.454604188  [2023-01-11 10:58:13] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:52308]
2023-01-11 10:58:13.468896960  [2023-01-11 10:58:13] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:36022]
2023-01-11 10:58:13.667344025  [2023-01-11 10:58:13] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:57016]
2023-01-11 10:58:13.809310836  [2023-01-11 10:58:13] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:42704]
2023-01-11 10:59:13.875586308  [2023-01-11 10:59:13] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:42704]
2023-01-11 10:59:18.400830458  [2023-01-11 10:59:18] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:57016]
2023-01-11 10:59:19.555348429  [2023-01-11 10:59:19] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:60746]
2023-01-11 11:00:19.565587223  [2023-01-11 11:00:19] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:60746]
2023-01-11 11:00:25.524548391  [2023-01-11 11:00:25] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:46486]
2023-01-11 11:01:25.526343418  [2023-01-11 11:01:25] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:46486]
2023-01-11 11:01:31.189938950  [2023-01-11 11:01:31] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:33672]
2023-01-11 11:02:04.454102374  [2023-01-11 11:02:04] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:33672]
2023-01-11 11:07:34.732926431  [2023-01-11 11:07:34] ws4py                          INFO    : Managing websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:56888]
2023-01-11 11:19:44.954872851  [2023-01-11 11:19:44] ws4py                          INFO    : Terminating websocket [Local => 127.0.0.1:8082 | Remote => 127.0.0.1:56888]
NickM-27 commented 1 year ago

You have python bus error, this is covered in the docs https://docs.frigate.video/troubleshooting/faqs#fatal-python-error-bus-error

tmjpugh commented 1 year ago

Thank you. I saw this but previously increased /dev/shm and thought it unrelated. I forgot that I increased resolution on existing cameras and needed to increase further