blakeblackshear / frigate

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

[Support]: Recordings Deleted #8527

Closed didi3r closed 1 year ago

didi3r commented 1 year ago

Describe the problem you are having

Today I realized the recordings and events for all my cameras were deleted for some reason. I'm missing all segments between 1:00 am and 1:20 am. I have enabled 24/7 recording recently so if I go to try to see the recording from 1:00 to 2:00am I can see how it jumps from 1:00:40 to 1:20:50 since there segments in between were deleted. Also, I see there were some events captured between that time range but when I try to see the associated clips it says: "The media could not be loaded, either because the server or network failed or because the format is not supported."

image

Not sure exactly why that happened for that specific time range, all consecutive segments seem to be working fine. There is nothing relevant in the logs.

Any guidance on where to start troubleshooting?

Version

0.13.0-65E3E67

Frigate config file

logger:
  default: info
  logs:
    frigate.ptz: debug

model:
  path: plus://*****

ui:
  use_experimental: false

mqtt:
  host: *****
  user: *****
  password: *****

detectors:
  coral:
    type: edgetpu
    device: usb

# enable audio events for all cameras
audio:
  enabled: false
  listen:
  - bark
  - scream
  - speech
  - yell

ffmpeg:
  hwaccel_args: preset-vaapi
  output_args:
    record: preset-record-generic-audio-aac

record:
  enabled: true
  events:
    retain:
      default: 365
      mode: motion

snapshots:
  enabled: true
  retain:
    default: 365

objects:
  track:
  - person
  - dog
  - bicycle
  - motorcycle
  - cat
  - fedex
  - ups
  - face
  filters:
    dog:
      min_score: .65
      threshold: .7
    cat:
      min_score: .65
      threshold: .7
    amazon:
      min_score: .75
    ups:
      min_score: .75
    fedex:
      min_score: .75
    person:
      min_score: .65
      threshold: .7

birdseye:
  enabled: true

go2rtc:
  log:
    level: debug

  webrtc:
    candidates:
    - 192.168.31.5:8555
    - stun:8555

  streams:
    front_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.36:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:front_camera#audio=aac"
    front_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.36:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:front_camera_sub#audio=aac"

    entrance_east_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.30:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:entrance_east_camera#audio=aac"
    entrance_east_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.30:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:entrance_east_camera_sub#audio=aac"

    entrance_west_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.31:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:entrance_west_camera#audio=aac"
    entrance_west_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.31:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:entrance_west_camera_sub#audio=aac"

    patio_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.32:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:patio_camera#audio=aac"
    patio_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.32:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:patio_camera_sub#audio=aac"

    back_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.33:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:back_camera#audio=aac"
    back_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.33:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:back_camera_sub#audio=aac"

    rooftop_east_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.34:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:rooftop_east_camera#audio=aac"
    rooftop_east_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.34:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:rooftop_east_camera_sub#audio=aac"

    rooftop_west_camera:
    - ffmpeg:rtsp://*****:*****@192.168.31.35:554/stream1#video=copy#audio=copy#audio=aac
      # - "ffmpeg:rooftop_west_camera#audio=aac"
    rooftop_west_camera_sub:
    - ffmpeg:rtsp://*****:*****@192.168.31.35:554/stream2#video=copy#audio=copy#audio=aac
      # - "ffmpeg:rooftop_west_camera_sub#audio=aac"

cameras:
  # ====================================
  # Front 360 Camera
  # ====================================
  front_camera:
    ui:
      order: 1

    onvif:
      host: 192.168.31.36
      port: 2020
      user: *****
      password: *****

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/front_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain:
        days: 14
        mode: all

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

  # ====================================
  # Entrance Camera 1
  # ====================================
  entrance_east_camera:
    ui:
      order: 3

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/entrance_east_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain:
        days: 14
        mode: all
      events:
        required_zones:
        - entrance_zone
        - street_zone
        - sidewalk_zone
        - front_sidewalk_zone

    snapshots:
      required_zones:
      - entrance_zone
      - street_zone
      - sidewalk_zone
      - front_sidewalk_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      entrance_zone:
        coordinates: 0,720,1280,720,1280,510,444,228,398,124,158,82,0,132
        objects:
        - person
        - dog
        - cat

      street_zone:
        coordinates: 1280,420,1280,212,817,140,395,104,165,108,172,161
        objects:
        - motorcycle
        - bicycle

      sidewalk_zone:
        coordinates: 1280,292,1280,513,753,341,175,180,165,104,548,138
        objects:
        - person
        - dog
        - cat

      front_sidewalk_zone:
        coordinates: 478,53,1280,133,1280,246,972,184,565,138,198,116,258,56
        objects:
        - person
        - dog
        - cat

      face_detection_zone:
        coordinates: 1280,548,1280,720,0,720,0,125
        objects:
        - person
        - face

    mqtt:
      timestamp: false
      bounding_box: false
      crop: true
      quality: 100
      height: 500
      required_zones:
      - face_detection_zone

  # ====================================
  # Entrance Camera 2
  # ====================================
  entrance_west_camera:
    ui:
      order: 2

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/entrance_west_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain:
        days: 14
        mode: all
      events:
        required_zones:
        - entrance_zone
        - street_zone
        - sidewalk_zone
        - front_sidewalk_zone

    snapshots:
      required_zones:
      - entrance_zone
      - street_zone
      - sidewalk_zone
      - front_sidewalk_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      entrance_zone:
        coordinates: 767,233,984,0,1280,0,1280,720,0,720,0,528
        objects:
        - person
        - dog
        - cat

      street_zone:
        coordinates: 0,437,558,239,954,122,957,50,464,120,0,238
        objects:
          # - car
        - motorcycle
        - bicycle

      sidewalk_zone:
        coordinates: 0,541,976,153,980,48,0,359
        objects:
        - person
        - dog
        - cat

      front_sidewalk_zone:
        coordinates: 0,279,521,139,980,60,982,0,792,0,455,28,0,125
        objects:
        - person
        - dog
        - cat

      face_detection_zone:
        coordinates: 1280,720,1280,0,0,720
        objects:
        - person
        - face 

    mqtt:
      timestamp: false
      bounding_box: false
      crop: true
      quality: 100
      height: 500
      required_zones:
      - face_detection_zone

  # ====================================
  # Patio Camera
  # ====================================
  patio_camera:
    ui:
      order: 4

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/patio_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      events:
        required_zones:
          # - patio_indoor_zone
        - patio_outdoor_zone

    snapshots:
      required_zones:
        # - patio_indoor_zone
      - patio_outdoor_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      patio_indoor_zone:
        coordinates: 162,0,261,0,288,305,287,720,144,720,46,519,0,344,0,137
        objects:
        - person

      patio_outdoor_zone:
        coordinates: 698,166,977,96,1280,98,1280,720,263,720,272,176
        objects:
        - person

      face_detection_zone:
        coordinates: 1280,720,1280,511,926,170,206,158,0,495,0,720
        objects:
        - person
        - face

    mqtt:
      timestamp: false
      bounding_box: false
      crop: true
      quality: 100
      height: 500
      required_zones:
      - face_detection_zone

  # ====================================
  # Back 360 Camera
  # ====================================
  back_camera:
    ui:
      order: 8

    onvif:
      host: 192.168.31.33
      port: 2020
      user: ****
      password: *****

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/back_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain: 
        days: 14
        mode: all
      events:
        required_zones:
        - back_wall_zone

    snapshots:
      required_zones:
      - back_wall_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      back_wall_zone:
        # coordinates: 640,325,640,360,295,360,0,166,0,37
        coordinates: 0,128,1280,138,1280,475,1081,566,1007,720,242,720,184,527,0,375
        objects:
        - person
        filters:
          person:
            min_area: 230

  # ====================================
  # Rooftop East Camera
  # ====================================
  rooftop_east_camera:
    ui:
      order: 7

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/rooftop_east_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain:
        days: 14
        mode: all
      events:
        required_zones:
        - rooftop_zone

    snapshots:
      required_zones:
      - rooftop_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      rooftop_zone:
        coordinates: 
          1280,720,1280,280,896,203,315,191,307,423,246,423,248,219,197,218,139,308,0,361,0,720
        objects:
        - person

  # ====================================
  # Rooftop West Camera
  # ====================================
  rooftop_west_camera:
    ui:
      order: 6

    detect:
      width: 1280
      height: 720

    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/rooftop_west_camera?video=copy&audio=aac
        input_args: preset-rtsp-restream
        roles:
        - record
        - detect
        - audio

    record:
      enabled: True
      retain:
        days: 14
        mode: all
      events:
        required_zones:
        - rooftop_zone

    snapshots:
      required_zones:
      - rooftop_zone

    motion:
      mask:
        # Timestamp Mask
      - 447,0,446,62,0,74,0,0

    zones:
      rooftop_zone:
        coordinates: 1280,720,1280,267,175,276,164,394,0,441,0,720
        objects:
        - person

Relevant log output

2023-11-04 21:57:13.825208176  [INFO] Preparing Frigate...
2023-11-04 21:57:13.875717438  [INFO] Starting Frigate...
2023-11-04 21:57:15.848735837  [2023-11-04 21:57:15] frigate.app                    INFO    : Starting Frigate (0.13.0-65e3e67)
2023-11-04 21:57:16.546290259  [2023-11-04 21:57:16] peewee_migrate.logs            INFO    : Starting migrations
2023-11-04 21:57:16.551033304  [2023-11-04 21:57:16] peewee_migrate.logs            INFO    : There is nothing to migrate
2023-11-04 21:57:16.872851012  [2023-11-04 21:57:16] frigate.app                    INFO    : Recording process started: 297
2023-11-04 21:57:16.875214164  [2023-11-04 21:57:16] frigate.app                    INFO    : go2rtc process pid: 88
2023-11-04 21:57:16.910705747  [2023-11-04 21:57:16] detector.coral                 INFO    : Starting detection process: 307
2023-11-04 21:57:19.778173078  [2023-11-04 21:57:16] frigate.app                    INFO    : Output process started: 309
2023-11-04 21:57:19.779247873  [2023-11-04 21:57:16] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-04 21:57:19.779682918  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for front_camera: 333
2023-11-04 21:57:19.780160167  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for entrance_east_camera: 334
2023-11-04 21:57:19.792611418  [2023-11-04 21:57:16] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2023-11-04 21:57:19.793946892  [2023-11-04 21:57:19] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2023-11-04 21:57:19.794602871  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for entrance_west_camera: 337
2023-11-04 21:57:19.795308911  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for patio_camera: 338
2023-11-04 21:57:19.795859692  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for back_camera: 341
2023-11-04 21:57:19.796185801  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for rooftop_east_camera: 342
2023-11-04 21:57:19.796580254  [2023-11-04 21:57:17] frigate.app                    INFO    : Camera processor started for rooftop_west_camera: 344
2023-11-04 21:57:19.796894604  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for front_camera: 346
2023-11-04 21:57:19.797205950  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for entrance_east_camera: 350
2023-11-04 21:57:19.797574811  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for entrance_west_camera: 354
2023-11-04 21:57:19.797982172  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for patio_camera: 359
2023-11-04 21:57:19.798306668  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for back_camera: 363
2023-11-04 21:57:19.798637478  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for rooftop_east_camera: 367
2023-11-04 21:57:19.798963445  [2023-11-04 21:57:17] frigate.app                    INFO    : Capture process started for rooftop_west_camera: 374
2023-11-05 06:48:34.121957853  [h264 @ 0x7fb24f897f00] error while decoding MB 129 85, bytestream -12
2023-11-05 06:54:54.226859868  [h264 @ 0x7fb24d74a280] error while decoding MB 138 60, bytestream 348
2023-11-05 08:07:44.618765818  [h264 @ 0x7fb249b3c580] error while decoding MB 145 76, bytestream -10
2023-11-05 13:20:01.530547118  [2023-11-05 13:20:01] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-05 13:21:20.918643956  [2023-11-05 13:21:20] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-05 13:29:05.409835037  [2023-11-05 13:29:05] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-05 13:30:23.045199306  [2023-11-05 13:30:23] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-05 14:04:08.194389925  [2023-11-05 14:04:08] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-05 14:06:22.187944332  [2023-11-05 14:06:22] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-05 14:32:30.601261040  [2023-11-05 14:32:30] watchdog.patio_camera          INFO    : No frames received from patio_camera in 20 seconds. Exiting ffmpeg...
2023-11-05 14:32:30.603020982  [2023-11-05 14:32:30] watchdog.patio_camera          INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-05 14:32:30.671155429  [2023-11-05 14:32:30] frigate.video                  ERROR   : patio_camera: Unable to read frames from ffmpeg process.
2023-11-05 14:32:30.671280943  [2023-11-05 14:32:30] frigate.video                  ERROR   : patio_camera: ffmpeg process is not running. exiting capture thread...
2023-11-05 14:32:40.685963473  [2023-11-05 14:32:40] watchdog.patio_camera          ERROR   : Ffmpeg process crashed unexpectedly for patio_camera.
2023-11-05 14:32:40.686183548  [2023-11-05 14:32:40] watchdog.patio_camera          ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-05 14:32:40.687384249  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x564680a11700] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-05 14:32:40.688783131  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x564680a11700] Non-monotonous DTS in output stream 0:0; previous: 99029898, current: 99029898; changing to 99029899. This may result in incorrect timestamps in the output file.
2023-11-05 14:32:40.689269257  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x564680a11700] Non-monotonous DTS in output stream 0:0; previous: 285172654, current: 285172654; changing to 285172655. This may result in incorrect timestamps in the output file.
2023-11-05 14:32:40.689527591  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x564680a11700] Non-monotonous DTS in output stream 0:1; previous: 249436592, current: 249435912; changing to 249436593. This may result in incorrect timestamps in the output file.
2023-11-05 14:32:40.689929040  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x564680a11700] Non-monotonous DTS in output stream 0:0; previous: 915929283, current: 915929011; changing to 915929284. This may result in incorrect timestamps in the output file.
2023-11-05 14:32:40.690115349  [2023-11-05 14:32:40] ffmpeg.patio_camera.detect     ERROR   : rtsp://127.0.0.1:8554/patio_camera?video=copy&audio=aac: Connection timed out
2023-11-05 16:21:07.214994443  [h264 @ 0x7fb25114eec0] error while decoding MB 45 26, bytestream -20
2023-11-05 16:21:11.205868681  [2023-11-05 16:21:11] watchdog.patio_camera          INFO    : patio_camera exceeded fps limit. Exiting ffmpeg...
2023-11-05 16:21:11.206230797  [2023-11-05 16:21:11] watchdog.patio_camera          INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-05 16:21:13.259622149  [2023-11-05 16:21:13] frigate.video                  ERROR   : patio_camera: Unable to read frames from ffmpeg process.
2023-11-05 16:21:13.259915969  [2023-11-05 16:21:13] frigate.video                  ERROR   : patio_camera: ffmpeg process is not running. exiting capture thread...
2023-11-05 16:21:23.277547649  [2023-11-05 16:21:23] watchdog.patio_camera          ERROR   : Ffmpeg process crashed unexpectedly for patio_camera.
2023-11-05 16:21:23.277551952  [2023-11-05 16:21:23] watchdog.patio_camera          ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-05 16:21:23.277554318  [2023-11-05 16:21:23] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x55fbbffba700] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-05 16:21:23.277559630  [2023-11-05 16:21:23] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x55fbbffba700] Non-monotonous DTS in output stream 0:0; previous: 18600192, current: 18600192; changing to 18600193. This may result in incorrect timestamps in the output file.
2023-11-06 07:10:04.440649746  [h264 @ 0x7fb252fede80] error while decoding MB 131 61, bytestream -12
2023-11-06 07:26:04.470743612  [h264 @ 0x7fb249b3cbc0] error while decoding MB 83 68, bytestream -26
2023-11-06 07:36:24.499768976  [h264 @ 0x7fb241974280] left block unavailable for requested intra4x4 mode -1
2023-11-06 07:36:24.499775229  [h264 @ 0x7fb241974280] error while decoding MB 0 63, bytestream 9419
2023-11-06 08:41:16.341077708  [2023-11-06 08:41:16] watchdog.patio_camera          INFO    : No frames received from patio_camera in 20 seconds. Exiting ffmpeg...
2023-11-06 08:41:16.341393154  [2023-11-06 08:41:16] watchdog.patio_camera          INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-06 08:41:16.464422080  [2023-11-06 08:41:16] frigate.video                  ERROR   : patio_camera: Unable to read frames from ffmpeg process.
2023-11-06 08:41:16.466057801  [2023-11-06 08:41:16] frigate.video                  ERROR   : patio_camera: ffmpeg process is not running. exiting capture thread...
2023-11-06 08:41:26.465913048  [2023-11-06 08:41:26] watchdog.patio_camera          ERROR   : Ffmpeg process crashed unexpectedly for patio_camera.
2023-11-06 08:41:26.466253379  [2023-11-06 08:41:26] watchdog.patio_camera          ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-06 08:41:26.466256616  [2023-11-06 08:41:26] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x55a959409680] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-06 08:41:26.466258830  [2023-11-06 08:41:26] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x55a959409680] Non-monotonous DTS in output stream 0:1; previous: 410514992, current: 410514408; changing to 410514993. This may result in incorrect timestamps in the output file.
2023-11-06 08:41:26.466260442  [2023-11-06 08:41:26] ffmpeg.patio_camera.detect     ERROR   : rtsp://127.0.0.1:8554/patio_camera?video=copy&audio=aac: Connection timed out
2023-11-06 08:46:34.865716583  [h264 @ 0x7fb249889700] error while decoding MB 76 74, bytestream -20
2023-11-06 08:57:15.010368781  [h264 @ 0x7fb24921bc80] error while decoding MB 75 57, bytestream -10
2023-11-06 11:54:45.803229575  [h264 @ 0x7fb241f97940] left block unavailable for requested intra mode
2023-11-06 11:54:45.803232498  [h264 @ 0x7fb241f97940] error while decoding MB 0 58, bytestream 2320
2023-11-06 11:57:35.899969474  [h264 @ 0x7fb24f8ad500] left block unavailable for requested intra4x4 mode -1
2023-11-06 11:57:35.899972864  [h264 @ 0x7fb24f8ad500] error while decoding MB 0 72, bytestream 10862
2023-11-06 12:08:15.869316666  [h264 @ 0x7fb252d3a380] error while decoding MB 156 69, bytestream -16
2023-11-06 13:05:36.148052364  [h264 @ 0x7fb249b40a80] left block unavailable for requested intra4x4 mode -1
2023-11-06 13:05:36.148057666  [h264 @ 0x7fb249b40a80] error while decoding MB 0 64, bytestream 55680
2023-11-06 13:08:46.209303505  [h264 @ 0x7fb253f361c0] error while decoding MB 104 74, bytestream -32
2023-11-06 13:22:42.817433726  [2023-11-06 13:22:42] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-06 13:25:10.305644427  [2023-11-06 13:25:10] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-06 13:39:23.445534846  [2023-11-06 13:39:23] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-06 13:40:41.065261374  [2023-11-06 13:40:41] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-06 14:01:58.871561669  [2023-11-06 14:01:58] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-06 14:03:18.054951077  [2023-11-06 14:03:18] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-06 14:26:56.567216361  [h264 @ 0x7fb251f6fdc0] error while decoding MB 159 64, bytestream -22
2023-11-06 14:28:56.618229537  [h264 @ 0x7fb25114e940] left block unavailable for requested intra mode
2023-11-06 14:28:56.618233094  [h264 @ 0x7fb25114e940] error while decoding MB 0 65, bytestream 65265
2023-11-06 14:30:54.723056050  [2023-11-06 14:30:54] frigate.comms.dispatcher       INFO    : Turning on detection for patio_camera
2023-11-06 14:32:12.338887161  [2023-11-06 14:32:12] frigate.comms.dispatcher       INFO    : Turning off detection for patio_camera
2023-11-06 15:13:56.968658941  [h264 @ 0x7fb25114dec0] error while decoding MB 21 77, bytestream -6
2023-11-06 16:14:57.110090814  [h264 @ 0x7fb241a6fcc0] error while decoding MB 132 69, bytestream -8
2023-11-06 16:47:18.087368157  [2023-11-06 16:47:18] watchdog.patio_camera          INFO    : patio_camera exceeded fps limit. Exiting ffmpeg...
2023-11-06 16:47:18.087383685  [2023-11-06 16:47:18] watchdog.patio_camera          INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-06 16:47:18.369227800  [2023-11-06 16:47:18] frigate.video                  ERROR   : patio_camera: Unable to read frames from ffmpeg process.
2023-11-06 16:47:18.369348044  [2023-11-06 16:47:18] frigate.video                  ERROR   : patio_camera: ffmpeg process is not running. exiting capture thread...
2023-11-06 16:47:28.417706497  [2023-11-06 16:47:28] watchdog.patio_camera          ERROR   : Ffmpeg process crashed unexpectedly for patio_camera.
2023-11-06 16:47:28.417741191  [2023-11-06 16:47:28] watchdog.patio_camera          ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-06 16:47:28.417756463  [2023-11-06 16:47:28] ffmpeg.patio_camera.detect     ERROR   : [segment @ 0x561c8188b700] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-06 17:02:42.525755420  [h264 @ 0x7fb24da74a40] error while decoding MB 9 63, bytestream -28
2023-11-06 17:16:32.417603612  [h264 @ 0x7fb24f8a3f00] error while decoding MB 115 53, bytestream -20
2023-11-06 17:50:22.592493197  [h264 @ 0x7fb24f8f1780] error while decoding MB 111 63, bytestream -28
2023-11-07 03:35:20.424226075  [2023-11-07 03:35:20] frigate.ptz.onvif              DEBUG   : Onvif configs for front_camera: {
2023-11-07 03:35:20.424231519      'Name': 'PTZ',
2023-11-07 03:35:20.424233553      'UseCount': 2,
2023-11-07 03:35:20.424235622      'NodeToken': 'PTZNODETOKEN',
2023-11-07 03:35:20.424238491      'DefaultAbsolutePantTiltPositionSpace': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/PositionGenericSpace',
2023-11-07 03:35:20.424240710      'DefaultAbsoluteZoomPositionSpace': None,
2023-11-07 03:35:20.424243730      'DefaultRelativePanTiltTranslationSpace': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/TranslationGenericSpace',
2023-11-07 03:35:20.424245751      'DefaultRelativeZoomTranslationSpace': None,
2023-11-07 03:35:20.424248552      'DefaultContinuousPanTiltVelocitySpace': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/VelocityGenericSpace',
2023-11-07 03:35:20.424250506      'DefaultContinuousZoomVelocitySpace': None,
2023-11-07 03:35:20.424252356      'DefaultPTZSpeed': None,
2023-11-07 03:35:20.424543140      'DefaultPTZTimeout': None,
2023-11-07 03:35:20.424544758      'PanTiltLimits': None,
2023-11-07 03:35:20.424545794      'ZoomLimits': None,
2023-11-07 03:35:20.424562013      'Extension': None,
2023-11-07 03:35:20.424563120      'token': 'PTZTOKEN',
2023-11-07 03:35:20.424564066      '_attr_1': {
2023-11-07 03:35:20.424564957  },
2023-11-07 03:35:20.424568884      '_raw_elements': deque([<Element {http://www.onvif.org/ver10/schema}DefaultAbsoluteZoomPositionSpace at 0x7fb24c187900>, <Element {http://www.onvif.org/ver10/schema}DefaultRelativeZoomTranslationSpace at 0x7fb24c187840>, <Element {http://www.onvif.org/ver10/schema}DefaultContinuousZoomVelocitySpace at 0x7fb24c1877c0>, <Element {http://www.onvif.org/ver10/schema}DefaultPTZSpeed at 0x7fb24c187740>, <Element {http://www.onvif.org/ver10/schema}DefaultPTZTimeout at 0x7fb24c187640>, <Element {http://www.onvif.org/ver10/schema}PanTiltLimits at 0x7fb24c187600>, <Element {http://www.onvif.org/ver10/schema}ZoomLimits at 0x7fb24c1874c0>, <Element {http://www.onvif.org/ver10/schema}Extension at 0x7fb24c187280>])
2023-11-07 03:35:20.424583477  }
2023-11-07 03:35:20.437293482  [2023-11-07 03:35:20] frigate.ptz.onvif              DEBUG   : Onvif config for front_camera: {
2023-11-07 03:35:20.437297587      'Spaces': {
2023-11-07 03:35:20.437299560          'AbsolutePanTiltPositionSpace': [
2023-11-07 03:35:20.437301153              {
2023-11-07 03:35:20.437303314                  'URI': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/PositionGenericSpace',
2023-11-07 03:35:20.437305004                  'XRange': {
2023-11-07 03:35:20.437306640                      'Min': -1.0,
2023-11-07 03:35:20.437308293                      'Max': 1.0
2023-11-07 03:35:20.437309746                  },
2023-11-07 03:35:20.437311387                  'YRange': {
2023-11-07 03:35:20.437313050                      'Min': -1.0,
2023-11-07 03:35:20.437314682                      'Max': 1.0
2023-11-07 03:35:20.437316211                  }
2023-11-07 03:35:20.437317680              }
2023-11-07 03:35:20.437319160          ],
2023-11-07 03:35:20.437321000          'AbsoluteZoomPositionSpace': [],
2023-11-07 03:35:20.437322719          'RelativePanTiltTranslationSpace': [
2023-11-07 03:35:20.437324206              {
2023-11-07 03:35:20.437326300                  'URI': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/TranslationGenericSpace',
2023-11-07 03:35:20.437327903                  'XRange': {
2023-11-07 03:35:20.437329576                      'Min': -1.0,
2023-11-07 03:35:20.437331282                      'Max': 1.0
2023-11-07 03:35:20.437332663                  },
2023-11-07 03:35:20.437334207                  'YRange': {
2023-11-07 03:35:20.437335770                      'Min': -1.0,
2023-11-07 03:35:20.437337349                      'Max': 1.0
2023-11-07 03:35:20.437338908                  }
2023-11-07 03:35:20.437340364              }
2023-11-07 03:35:20.437341806          ],
2023-11-07 03:35:20.437343602          'RelativeZoomTranslationSpace': [],
2023-11-07 03:35:20.437345317          'ContinuousPanTiltVelocitySpace': [],
2023-11-07 03:35:20.437347055          'ContinuousZoomVelocitySpace': [],
2023-11-07 03:35:20.437348693          'PanTiltSpeedSpace': [
2023-11-07 03:35:20.437350196              {
2023-11-07 03:35:20.437352260                  'URI': 'http://www.onvif.org/ver10/tptz/PanTiltSpaces/GenericSpeedSpace',
2023-11-07 03:35:20.437353881                  'XRange': {
2023-11-07 03:35:20.437355461                      'Min': 0.0,
2023-11-07 03:35:20.437425630                      'Max': 1.0
2023-11-07 03:35:20.437427527                  }
2023-11-07 03:35:20.437428927              }
2023-11-07 03:35:20.437430304          ],
2023-11-07 03:35:20.437431937          'ZoomSpeedSpace': [],
2023-11-07 03:35:20.437433467          'Extension': None,
2023-11-07 03:35:20.437435247          '_attr_1': None,
2023-11-07 03:35:20.437440465          '_raw_elements': deque([<Element {http://www.onvif.org/ver10/schema}ContinuousPanTiltVelocitySpace at 0x7fb24c263e40>, <Element {http://www.onvif.org/ver10/schema}AbsoluteZoomPositionSpace at 0x7fb24c263340>, <Element {http://www.onvif.org/ver10/schema}RelativeZoomTranslationSpace at 0x7fb24c263200>, <Element {http://www.onvif.org/ver10/schema}ContinuousZoomVelocitySpace at 0x7fb24c263180>, <Element {http://www.onvif.org/ver10/schema}ZoomSpeedSpace at 0x7fb24c263080>])
2023-11-07 03:35:20.437442072      },
2023-11-07 03:35:20.437443694      'PTZTimeout': {
2023-11-07 03:35:20.437445397          'Min': datetime.timedelta(seconds=1),
2023-11-07 03:35:20.437447162          'Max': datetime.timedelta(seconds=600)
2023-11-07 03:35:20.437448546      },
2023-11-07 03:35:20.437450091      '_value_1': [
2023-11-07 03:35:20.437452177          <Element {http://www.onvif.org/ver10/schema}PTControlDirection at 0x7fb24c25f140>
2023-11-07 03:35:20.437727307      ],
2023-11-07 03:35:20.437729635      'PTControlDirection': None,
2023-11-07 03:35:20.437731214      'Extension': None,
2023-11-07 03:35:20.437732686      '_attr_1': None
2023-11-07 03:35:20.437734048  }
2023-11-07 03:35:20.456079031  [2023-11-07 03:35:20] frigate.ptz.onvif              WARNING : Unable to get status from camera: front_camera: Unknown error: ('Connection aborted.', BadStatusLine('POST /onvif/service\x00HTTP/1.1\x00\x00Host\x00 192.168.31.36:2020\x00\x00User-Agent\x00 Zeep/4.2.1 (www.python-zeep.org)\x00\x00Accept-Encoding\x00 gzip, deflate\x00\x00Accept\x00 *HTTP/1.1 500 Internal Server Error\r\n'))
2023-11-07 08:30:53.678620711  [h264 @ 0x7fb24f709480] error while decoding MB 79 54, bytestream -10
2023-11-07 11:42:44.604035737  [h264 @ 0x7fb24bf1d680] error while decoding MB 105 54, bytestream -42
2023-11-07 12:06:58.320689716  [2023-11-07 12:06:58] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:06:58.793587159  [2023-11-07 12:06:58] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:15.642754748  [2023-11-07 12:07:15] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:16.112828183  [2023-11-07 12:07:16] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:22.403922707  [2023-11-07 12:07:22] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:22.880907815  [2023-11-07 12:07:22] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:25.518410287  [2023-11-07 12:07:25] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:26.038785748  [2023-11-07 12:07:26] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:30.635700827  [2023-11-07 12:07:30] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:07:31.057133168  [2023-11-07 12:07:31] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:08:30.693110458  [2023-11-07 12:08:30] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:08:31.131615326  [2023-11-07 12:08:31] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:08:34.255562124  [2023-11-07 12:08:34] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:08:34.671518570  [2023-11-07 12:08:34] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:10:54.655816273  [2023-11-07 12:10:54] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:10:55.131078952  [2023-11-07 12:10:55] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:10:57.306049186  [2023-11-07 12:10:57] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:10:57.788033336  [2023-11-07 12:10:57] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:10:59.925054652  [2023-11-07 12:10:59] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:11:00.457836819  [2023-11-07 12:11:00] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:33.663663540  [2023-11-07 12:16:33] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:34.213249632  [2023-11-07 12:16:34] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:42.608038766  [2023-11-07 12:16:42] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:43.046778259  [2023-11-07 12:16:43] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:45.422657190  [2023-11-07 12:16:45] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:45.867759627  [2023-11-07 12:16:45] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:47.944450075  [2023-11-07 12:16:47] frigate.http                   ERROR   : No recordings found for the requested time range
2023-11-07 12:16:48.407739668  [2023-11-07 12:16:48] frigate.http                   ERROR   : No recordings found for the requested time range

FFprobe output from your camera

Stream 0:
Return Code: 0

Video:

Codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
Resolution: 1920x1080
FPS: 57/4

Audio:

Codec: AAC (Advanced Audio Coding)

Frigate stats

{
   "cameras":{
      "back_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5.1,
         "capture_pid":363,
         "detection_enabled":1,
         "detection_fps":4.4,
         "ffmpeg_pid":383,
         "pid":341,
         "process_fps":5,
         "skipped_fps":0
      },
      "entrance_east_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5,
         "capture_pid":350,
         "detection_enabled":1,
         "detection_fps":6,
         "ffmpeg_pid":355,
         "pid":334,
         "process_fps":5,
         "skipped_fps":0
      },
      "entrance_west_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5,
         "capture_pid":354,
         "detection_enabled":1,
         "detection_fps":11.8,
         "ffmpeg_pid":361,
         "pid":337,
         "process_fps":5.1,
         "skipped_fps":0
      },
      "front_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5,
         "capture_pid":346,
         "detection_enabled":1,
         "detection_fps":8.7,
         "ffmpeg_pid":353,
         "pid":333,
         "process_fps":5,
         "skipped_fps":0
      },
      "patio_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5,
         "capture_pid":359,
         "detection_enabled":0,
         "detection_fps":0,
         "ffmpeg_pid":760523,
         "pid":338,
         "process_fps":5,
         "skipped_fps":0
      },
      "rooftop_east_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5.1,
         "capture_pid":367,
         "detection_enabled":1,
         "detection_fps":0,
         "ffmpeg_pid":380,
         "pid":342,
         "process_fps":5.1,
         "skipped_fps":0
      },
      "rooftop_west_camera":{
         "audio_dBFS":0,
         "audio_rms":0,
         "camera_fps":5.1,
         "capture_pid":374,
         "detection_enabled":1,
         "detection_fps":0,
         "ffmpeg_pid":379,
         "pid":344,
         "process_fps":5.1,
         "skipped_fps":0
      }
   },
   "cpu_usages":{
      "1":{
         "cmdline":"/package/admin/s6/command/s6-svscan -d4 -- /run/service",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "15":{
         "cmdline":"s6-supervise s6-linux-init-shutdownd",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "17":{
         "cmdline":"/package/admin/s6-linux-init/command/s6-linux-init-shutdownd -c /run/s6/basedir -g 3000 -C -B",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "24":{
         "cmdline":"s6-supervise nginx",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "25":{
         "cmdline":"s6-supervise nginx-log",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "26":{
         "cmdline":"s6-supervise go2rtc-healthcheck",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "27":{
         "cmdline":"s6-supervise frigate",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "28":{
         "cmdline":"s6-supervise go2rtc",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "29":{
         "cmdline":"s6-supervise go2rtc-log",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "30":{
         "cmdline":"s6-supervise s6rc-oneshot-runner",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "31":{
         "cmdline":"s6-supervise frigate-log",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "32":{
         "cmdline":"s6-supervise s6rc-fdholder",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "40":{
         "cmdline":"/package/admin/s6-2.11.3.2/command/s6-fdholderd -1 -i data/rules",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "42":{
         "cmdline":"/package/admin/s6/command/s6-ipcserverd -1 -- /package/admin/s6/command/s6-ipcserver-access -v0 -E -l0 -i data/rules -- /package/admin/s6/command/s6-sudod -t 30000 -- /package/admin/s6-rc/command/s6-rc-oneshot-run -l ../.. --",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "79":{
         "cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/nginx",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "81":{
         "cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/go2rtc",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "82":{
         "cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/frigate",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "88":{
         "cmdline":"/usr/local/go2rtc/bin/go2rtc -config=/dev/shm/go2rtc.yaml",
         "cpu":"3.0",
         "cpu_average":"3",
         "mem":"0.1"
      },
      "98":{
         "cmdline":"python3 -u -m frigate",
         "cpu":"9.9",
         "cpu_average":"6",
         "mem":"10.2"
      },
      "100":{
         "cmdline":"bash ./run.user go2rtc-healthcheck",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "116":{
         "cmdline":"nginx: master process nginx",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "142":{
         "cmdline":"nginx: worker process",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.1"
      },
      "143":{
         "cmdline":"nginx: worker process",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.1"
      },
      "144":{
         "cmdline":"nginx: worker process",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.1"
      },
      "145":{
         "cmdline":"nginx: worker process",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.1"
      },
      "146":{
         "cmdline":"nginx: cache manager process",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "295":{
         "cmdline":"frigate.logger       ",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.3"
      },
      "297":{
         "cmdline":"frigate.recording_manager",
         "cpu":"12.6",
         "cpu_average":"7",
         "mem":"2.5"
      },
      "306":{
         "cmdline":"/usr/bin/python3 -c from multiprocessing.resource_tracker import main;main(65)",
         "cpu":"0.8",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "307":{
         "cmdline":"frigate.detector.coral",
         "cpu":"10.1",
         "cpu_average":"4",
         "mem":"0.4"
      },
      "309":{
         "cmdline":"frigate.output       ",
         "cpu":"3.0",
         "cpu_average":"3",
         "mem":"0.4"
      },
      "315":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "316":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "317":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "318":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "319":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "320":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "321":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "322":{
         "cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      },
      "333":{
         "cmdline":"frigate.process:front_camera",
         "cpu":"13.9",
         "cpu_average":"4",
         "mem":"0.8"
      },
      "334":{
         "cmdline":"frigate.process:entrance_east_camera",
         "cpu":"8.4",
         "cpu_average":"3",
         "mem":"0.8"
      },
      "337":{
         "cmdline":"frigate.process:entrance_west_camera",
         "cpu":"14.6",
         "cpu_average":"3",
         "mem":"0.8"
      },
      "338":{
         "cmdline":"frigate.process:patio_camera",
         "cpu":"2.0",
         "cpu_average":"2",
         "mem":"0.5"
      },
      "341":{
         "cmdline":"frigate.process:back_camera",
         "cpu":"9.3",
         "cpu_average":"9",
         "mem":"0.8"
      },
      "342":{
         "cmdline":"frigate.process:rooftop_east_camera",
         "cpu":"2.3",
         "cpu_average":"3",
         "mem":"0.8"
      },
      "344":{
         "cmdline":"frigate.process:rooftop_west_camera",
         "cpu":"1.8",
         "cpu_average":"5",
         "mem":"0.8"
      },
      "346":{
         "cmdline":"frigate.capture:front_camera",
         "cpu":"2.6",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "350":{
         "cmdline":"frigate.capture:entrance_east_camera",
         "cpu":"2.4",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "353":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/front_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/front_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.4",
         "cpu_average":"4",
         "mem":"0.2"
      },
      "354":{
         "cmdline":"frigate.capture:entrance_west_camera",
         "cpu":"2.3",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "355":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/entrance_east_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/entrance_east_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.2",
         "cpu_average":"4",
         "mem":"0.2"
      },
      "359":{
         "cmdline":"frigate.capture:patio_camera",
         "cpu":"2.4",
         "cpu_average":"2",
         "mem":"0.5"
      },
      "360":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.36:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/8d9d154cd7557373e005aa9a1799c1b7",
         "cpu":"3.9",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "361":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/entrance_west_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/entrance_west_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.4",
         "cpu_average":"4",
         "mem":"0.2"
      },
      "363":{
         "cmdline":"frigate.capture:back_camera",
         "cpu":"2.3",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "364":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.30:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/e91bae207469d78eb1fd9dabce94d265",
         "cpu":"4.1",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "367":{
         "cmdline":"frigate.capture:rooftop_east_camera",
         "cpu":"2.4",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "371":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.31:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/aa05bd3eb8f7abc86769a4ac6879b18e",
         "cpu":"3.8",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "374":{
         "cmdline":"frigate.capture:rooftop_west_camera",
         "cpu":"2.1",
         "cpu_average":"2",
         "mem":"0.4"
      },
      "379":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/rooftop_west_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/rooftop_west_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"3.8",
         "cpu_average":"4",
         "mem":"0.3"
      },
      "380":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/rooftop_east_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/rooftop_east_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.2",
         "cpu_average":"4",
         "mem":"0.2"
      },
      "383":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/back_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/back_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.5",
         "cpu_average":"4",
         "mem":"0.4"
      },
      "387":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.35:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/3a9460d438115c35e95be34fde7aa232",
         "cpu":"4.1",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "391":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.34:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/d6d3415e999c79f367d7c1aad462a87f",
         "cpu":"4.2",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "393":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.33:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/51dcaa154741777c409023fde035458b",
         "cpu":"4.8",
         "cpu_average":"5",
         "mem":"0.1"
      },
      "760523":{
         "cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.0-65e3e67 -rtsp_transport tcp -timeout 5000000 -i rtsp://127.0.0.1:8554/patio_camera?video=copy&audio=aac -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/patio_camera-%Y%m%d%H%M%S.mp4 -r 5 -vf fps=5,scale_vaapi=w=1280:h=720,hwdownload,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:",
         "cpu":"4.2",
         "cpu_average":"4",
         "mem":"0.4"
      },
      "760525":{
         "cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -fflags nobuffer -flags low_delay -timeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_flags prefer_tcp -i rtsp://camera:OKBj8RnC@192.168.31.32:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/73d17ec04964a35f451e220bcd05aec7",
         "cpu":"3.8",
         "cpu_average":"4",
         "mem":"0.1"
      },
      "1114602":{
         "cmdline":"sleep 30s",
         "cpu":"0.0",
         "cpu_average":"0",
         "mem":"0.0"
      }
   },
   "detection_fps":30.9,
   "detectors":{
      "coral":{
         "detection_start":0,
         "inference_speed":6.07,
         "pid":307
      }
   },
   "gpu_usages":{
      "intel-vaapi":{
         "gpu":"9.93%",
         "mem":"-%"
      }
   },
   "processes":{
      "go2rtc":{
         "pid":88
      },
      "logger":{
         "pid":295
      },
      "recording":{
         "pid":297
      }
   },
   "service":{
      "last_updated":1699382310,
      "latest_version":"0.12.1",
      "storage":{
         "/dev/shm":{
            "free":239.6,
            "mount_type":"tmpfs",
            "total":256,
            "used":16.4
         },
         "/media/frigate/clips":{
            "free":3027830.7,
            "mount_type":"fuseblk",
            "total":3815413,
            "used":787582.3
         },
         "/media/frigate/recordings":{
            "free":3027830.7,
            "mount_type":"fuseblk",
            "total":3815413,
            "used":787582.3
         },
         "/tmp/cache":{
            "free":945.2,
            "mount_type":"tmpfs",
            "total":953.7,
            "used":8.4
         }
      },
      "temperatures":{

      },
      "uptime":225673,
      "version":"0.13.0-65e3e67"
   }
}

Operating system

Other Linux

Install method

Docker Compose

Coral version

USB

Network connection

Wired

Camera make and model

Tapo C310, C320WS, C500, C520WS

Any other information that may be helpful

No response

NickM-27 commented 1 year ago

This was fixed in https://github.com/blakeblackshear/frigate/pull/8472 you can run the latest dev build to use this fix