frigate: [Support]: Unable to keep up with recording segments in cache

Describe the problem you are having

I have plenty of errors in the logs and not everything is recorded.

Version

0.13.1

Frigate config file

mqtt:
  host: 10.0.x.x
  port: 1883
  user: xxxx
  password: 'xxxx'

detectors:
  coral:
    type: edgetpu
    device: usb
    
database:
  path: /config/frigate.db

logger:
  logs:
   frigate.record.maintainer: debug

go2rtc:
  log:
    exec: trace
  streams:
    haustuer_high: # TP-Link C200
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream1"
    - "ffmpeg:haustuer_high#audio=acc"
    haustuer_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream2"
    - "ffmpeg:haustuer_low#audio=acc"
    paddock_high: # TP-Link C310
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream1"
    - "ffmpeg:paddock_high#audio=acc"
    paddock_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream2"
    - "ffmpeg:paddock_low#audio=acc"
    blackpearl_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.33:554/h264Preview_01_main"
    - "ffmpeg:blackpearl_high#audio=opus"
    blackpearl_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.33:554/h264Preview_01_sub"
    - "ffmpeg:blackpearl_low#audio=opus"
    coolcassis_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxx:xxxx@10.0.2.34:554/h264Preview_01_main"
    - "ffmpeg:coolcassis_high#audio=opus"
    coolcassis_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.34:554/h264Preview_01_sub"
    - "ffmpeg:coolcassis_low#audio=opus"
    sam_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.35:554/h264Preview_01_main"
    - "ffmpeg:sam_high#audio=opus"
    sam_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.35:554/h264Preview_01_sub"
    - "ffmpeg:sam_low#audio=opus"
  webrtc:
    candidates:
    - 10.0.x.x:8555
    - stun:8555

ffmpeg:
  input_args: preset-rtsp-restream
  output_args:
    record: preset-record-generic-audio-copy

motion:
  threshold: 20
  contour_area: 10

birdseye:
  enabled: true
  mode: continuous

cameras:
  blackpearl:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/blackpearl_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/blackpearl_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: blackpearl_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 0
    birdseye:
      order: 0
  coolcassis:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/coolcassis_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/coolcassis_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: coolcassis_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 1
    birdseye:
      order: 1
  sam:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/sam_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/sam_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: sam_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 2
    birdseye:
      order: 2
  paddock:
    ffmpeg:
    #  output_args:
    #    record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/paddock_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/paddock_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: paddock_high
    detect:
      enabled: true
      width: 640
      height: 360
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 3
    birdseye:
      order: 3
  haustuer:
    ffmpeg:
      #output_args:
      #  record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/haustuer_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/haustuer_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: haustuer_low
    detect:
      width: 640
      height: 360
      stationary:
        interval: 5
        threshold: 50
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
    snapshots:
      enabled: true
    ui:
      order: 4
    birdseye:
      order: 4

Relevant log output

2024-02-04 17:32:11.178119284  [INFO] Preparing Frigate...
2024-02-04 17:32:14.682697906  [INFO] Starting Frigate...
2024-02-04 17:32:28.993187489  [2024-02-04 18:32:28] frigate.app                    INFO    : Starting Frigate (0.13.1-34fb1c2)
2024-02-04 17:32:28.994208956  [2024-02-04 18:32:28] frigate.app                    INFO    : Creating directory: /tmp/cache
2024-02-04 17:32:29.421468527  [2024-02-04 18:32:29] peewee_migrate.logs            INFO    : Starting migrations
2024-02-04 17:32:29.574239651  [2024-02-04 18:32:29] peewee_migrate.logs            INFO    : There is nothing to migrate
2024-02-04 17:32:29.647481407  [2024-02-04 18:32:29] frigate.app                    INFO    : Recording process started: 317
2024-02-04 17:32:29.661697445  [2024-02-04 18:32:29] frigate.app                    INFO    : go2rtc process pid: 90
2024-02-04 17:32:29.804379046  [2024-02-04 18:32:29] frigate.app                    INFO    : Output process started: 328
2024-02-04 17:32:29.809604361  [2024-02-04 18:32:29] detector.coral                 INFO    : Starting detection process: 327
2024-02-04 17:32:29.867884570  [2024-02-04 18:32:29] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2024-02-04 17:32:30.260033781  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for blackpearl: 340
2024-02-04 17:32:30.289905014  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for coolcassis: 342
2024-02-04 17:32:30.334617986  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for sam: 343
2024-02-04 17:32:30.375913986  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for paddock: 345
2024-02-04 17:32:30.440224185  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for haustuer: 349
2024-02-04 17:32:30.579766709  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for blackpearl: 362
2024-02-04 17:32:30.682153361  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for coolcassis: 368
2024-02-04 17:32:30.772862804  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for sam: 372
2024-02-04 17:32:30.849370852  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for paddock: 375
2024-02-04 17:32:31.057751030  [2024-02-04 18:32:31] frigate.app                    INFO    : Capture process started for haustuer: 388
2024-02-04 17:32:34.195233852  [2024-02-04 18:32:34] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2024-02-04 17:32:38.114300870  [2024-02-04 18:32:38] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:32:38.114741643  [2024-02-04 18:32:38] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:39.311405789  [2024-02-04 18:32:39] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:39.312550609  [2024-02-04 18:32:39] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:44.690555497  [2024-02-04 18:32:44] frigate.record.maintainer      DEBUG   : Found 2 old frames.
2024-02-04 17:32:50.937918968  [2024-02-04 18:32:50] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:32:50.937944357  [2024-02-04 18:32:50] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:32:50.937966912  [2024-02-04 18:32:50] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:32:51.103208001  [2024-02-04 18:32:51] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:32:51.103221334  [2024-02-04 18:32:51] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:32:51.115806831  [2024-02-04 18:32:51] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:51.403662897  [2024-02-04 18:32:51] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:32:51.406902608  [2024-02-04 18:32:51] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:32:51.406915904  [2024-02-04 18:32:51] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:32:51.545696465  [2024-02-04 18:32:51] watchdog.haustuer              INFO    : No frames received from haustuer in 20 seconds. Exiting ffmpeg...
2024-02-04 17:32:51.548650234  [2024-02-04 18:32:51] watchdog.haustuer              INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:51.567962912  [2024-02-04 18:32:51] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:32:51.582781037  [2024-02-04 18:32:51] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:32:51.644003762  [2024-02-04 18:32:51] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:52.028634956  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.039755969  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.044046931  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.076860306  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:54.691776977  [2024-02-04 18:32:54] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:32:58.906157599  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:58.915500635  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:58.915537709  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:59.076272189  [2024-02-04 18:32:59] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:32:59.101270603  [2024-02-04 18:32:59] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:01.556403960  [2024-02-04 18:33:01] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:01.557383175  [2024-02-04 18:33:01] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:01.558215724  [2024-02-04 18:33:01] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:01.659537524  [2024-02-04 18:33:01] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:33:01.659552838  [2024-02-04 18:33:01] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:01.659556060  [2024-02-04 18:33:01] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:01.982284131  [2024-02-04 18:33:01] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:01.983814360  [2024-02-04 18:33:01] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:01.984166894  [2024-02-04 18:33:01] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:02.097941147  [2024-02-04 18:33:02] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:33:02.098922454  [2024-02-04 18:33:02] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:02.099873095  [2024-02-04 18:33:02] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:02.257769388  [2024-02-04 18:33:02] watchdog.haustuer              ERROR   : Ffmpeg process crashed unexpectedly for haustuer.
2024-02-04 17:33:02.259157970  [2024-02-04 18:33:02] watchdog.haustuer              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:02.261909227  [2024-02-04 18:33:02] ffmpeg.haustuer.detect         ERROR   : [swscaler @ 0x559b3545d0] deprecated pixel format used, make sure you did set range correctly
2024-02-04 17:33:08.696414227  [2024-02-04 18:33:08] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:08.701029139  [2024-02-04 18:33:08] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:09.505587579  [2024-02-04 18:33:09] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:33:09.507180568  [2024-02-04 18:33:09] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:11.766497879  [2024-02-04 18:33:11] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:11.799315365  [2024-02-04 18:33:11] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:11.802013273  [2024-02-04 18:33:11] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:11.839059176  [2024-02-04 18:33:11] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:33:11.893059207  [2024-02-04 18:33:11] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:11.893523796  [2024-02-04 18:33:11] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:12.179850006  [2024-02-04 18:33:12] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:12.181855012  [2024-02-04 18:33:12] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:12.183633870  [2024-02-04 18:33:12] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:12.241172420  [2024-02-04 18:33:12] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:33:12.244982228  [2024-02-04 18:33:12] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:12.247669433  [2024-02-04 18:33:12] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:13.797339876  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.800389060  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.803928833  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.804319738  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:17.628338780  [2024-02-04 18:33:17] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:33:17.629715068  [2024-02-04 18:33:17] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:18.099805420  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:18.100710989  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:18.101929630  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:21.928496313  [2024-02-04 18:33:21] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:21.928853459  [2024-02-04 18:33:21] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:21.930257136  [2024-02-04 18:33:21] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:22.252679382  [2024-02-04 18:33:22] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:22.253234249  [2024-02-04 18:33:22] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:22.255747919  [2024-02-04 18:33:22] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:22.423053963  [2024-02-04 18:33:22] watchdog.haustuer              ERROR   : Ffmpeg process crashed unexpectedly for haustuer.
2024-02-04 17:33:22.423284999  [2024-02-04 18:33:22] watchdog.haustuer              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:22.425235006  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : [rtsp @ 0x5590493090] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 17:33:22.425895557  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 17:33:22.427481511  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : Output file #0 does not contain any stream
2024-02-04 17:33:34.685948621  [2024-02-04 18:33:34] frigate.record.maintainer      DEBUG   : Found 2 old frames.
2024-02-04 17:33:44.823884600  [2024-02-04 18:33:44] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:51:31.514982363  [2024-02-04 18:51:31] ffmpeg.sam.record              ERROR   : [segment @ 0x55b13e3b30] Non-monotonous DTS in output stream 0:0; previous: 3096, current: 361; changing to 3097. This may result in incorrect timestamps in the output file.
22024-02-04 17:51:31.577218785  [2024-02-04 18:51:31] ffmpeg.sam.record              ERROR   : [segment @ 0x55b13e3b30] Non-monotonous DTS in output stream 0:0; previous: 3101, current: 2732; changing to 3102. This may result in incorrect timestamps in the output file.
2024-02-04 17:51:31.581353584  [2024-02-04 18:51:31] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:51:31.584195325  [2024-02-04 18:51:31] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:02.590064559  [2024-02-04 18:55:02] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x558c38db30] Non-monotonous DTS in output stream 0:0; previous: 6306, current: 1027; changing to 6307. This may result in incorrect timestamps in the output file.
2024-02-04 17:55:02.630613374  [2024-02-04 18:55:02] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:55:02.631230719  [2024-02-04 18:55:02] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:21.198678959  [2024-02-04 18:55:21] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/coolcassis@20240204185451+0100.mp4
2024-02-04 17:55:34.956657663  [2024-02-04 18:55:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:55:39.959444303  [2024-02-04 18:55:39] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:55:44.973498856  [2024-02-04 18:55:44] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:55:45.158124581  [2024-02-04 18:55:45] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:55:50.099609687  [2024-02-04 18:55:50] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:55:51.676217811  [2024-02-04 18:55:51] watchdog.sam                   INFO    : sam exceeded fps limit. Exiting ffmpeg...
2024-02-04 17:55:51.678056440  [2024-02-04 18:55:51] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:55.011368450  [2024-02-04 18:55:55] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:25.174471929  [2024-02-04 18:56:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:56:25.618485991  [2024-02-04 18:56:25] watchdog.sam                   INFO    : FFmpeg did not exit. Force killing...
2024-02-04 17:56:25.662969467  [2024-02-04 18:56:25] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-04 17:56:25.675150228  [2024-02-04 18:56:25] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:56:28.589163879  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3091, current: 476; changing to 3092. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.589617189  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3092, current: 1422; changing to 3093. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.590467976  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3093, current: 1651; changing to 3094. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.590554198  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3094, current: 2137; changing to 3095. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.591389392  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3095, current: 2501; changing to 3096. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.591696260  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3096, current: 2844; changing to 3097. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.592017756  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] 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
2024-02-04 17:56:28.592599880  [2024-02-04 18:56:28] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:56:28.593405927  [2024-02-04 18:56:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:56:29.989213038  [2024-02-04 18:56:29] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:34.989089375  [2024-02-04 18:56:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:38.734074556  [2024-02-04 18:56:38] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-04 17:56:38.734663068  [2024-02-04 18:56:38] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:56:38.735312784  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x5574a29090] RTP: PT=60: bad cseq 0755 expected=a9d4
2024-02-04 17:56:38.735741261  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [h264 @ 0x5574a7b220] error while decoding MB 14 1, bytestream -24
2024-02-04 17:56:38.736146701  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-04 17:56:38.737264708  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x5574a29090] RTP: PT=61: bad cseq 0d3d expected=353c
2024-02-04 17:56:38.737892349  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 100 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.738391455  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 1000 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.738945653  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 10000 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.739008560  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 100000 buffers queued in out_0_0, something may be wrong.
2024-02-04 19:36:10.662581002  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:10.664614976  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:10.666073068  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: ffmpeg process is not running. exiting capture thread...
2024-02-04 19:36:15.023809613  [2024-02-04 20:36:15] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:15.065317747  [2024-02-04 20:36:15] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:15.065398598  [2024-02-04 20:36:15] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 19:36:15.097044785  [2024-02-04 20:36:15] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 19:36:15.133034508  [2024-02-04 20:36:15] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 19:36:15.133050545  [2024-02-04 20:36:15] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 19:36:15.638933626  [2024-02-04 20:36:15] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:20.570233159  [2024-02-04 20:36:20] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:20.864883675  [2024-02-04 20:36:20] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:25.174057705  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:25.174644550  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:25.175158358  [2024-02-04 20:36:25] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 19:36:25.254005013  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : No new recording segments were created for paddock in the last 120s. restarting the ffmpeg record process...
2024-02-04 19:36:25.255637344  [2024-02-04 20:36:25] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 19:36:25.257074066  [2024-02-04 20:36:25] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 19:36:25.697279512  [2024-02-04 20:36:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:30.654817444  [2024-02-04 20:36:30] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:31.159777006  [2024-02-04 20:36:31] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:31.164046858  [2024-02-04 20:36:31] frigate.video                  ERROR   : paddock: ffmpeg process is not running. exiting capture thread...
2024-02-04 19:36:35.400206761  [2024-02-04 20:36:35] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:35.400788512  [2024-02-04 20:36:35] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:35.402117977  [2024-02-04 20:36:35] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 20:55:20.512072805  [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f741f66c0] moov atom not found
2024-02-04 21:32:18.738233805  
2024-02-04 21:32:18.738237749  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2024-02-04 21:32:18.738239305  
2024-02-04 21:32:18.738240564  
2024-02-04 21:32:19.876705192  [2024-02-04 22:32:19] frigate.record.maintainer      WARNING : Failed to probe corrupt segment /tmp/cache/haustuer@20240204223210+0100.mp4
2024-02-04 21:32:19.879698391  [2024-02-04 22:32:19] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/haustuer@20240204223210+0100.mp4
2024-02-04 21:32:20.594051311  [2024-02-04 22:32:20] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 21:32:20.715583368  [2024-02-04 22:32:20] watchdog.haustuer              ERROR   : No new recording segments were created for haustuer in the last 120s. restarting the ffmpeg record process...
2024-02-04 21:32:20.716216341  [2024-02-04 22:32:20] watchdog.haustuer              INFO    : Terminating the existing ffmpeg process...
2024-02-04 21:32:20.717100200  [2024-02-04 22:32:20] watchdog.haustuer              INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 21:32:25.936242376  [2024-02-04 22:32:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 21:32:31.072270546  [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f741c3190] moov atom not found
2024-02-04 21:32:31.073131182  [ERROR:0@14408.904] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2024-02-04 21:32:31.073144719  
2024-02-04 21:32:31.073148645  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2024-02-04 21:32:31.073150126  
2024-02-04 21:32:31.073151311  
2024-02-04 21:32:33.558123227  [2024-02-04 22:32:33] frigate.record.maintainer      WARNING : Failed to probe corrupt segment /tmp/cache/haustuer@20240204223220+0100.mp4
2024-02-04 21:32:33.558140671  [2024-02-04 22:32:33] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/haustuer@20240204223220+0100.mp4
2024-02-04 21:32:34.240850198  [2024-02-04 22:32:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 15 and discarding the rest...
2024-02-04 21:32:38.638422581  [2024-02-04 22:32:38] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 10 and discarding the rest...
2024-02-04 21:32:40.939945892  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.945508797  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958284363  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958303993  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958307733  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : rtsp://127.0.0.1:8554/haustuer_high: Invalid data found when processing input
2024-02-04 21:32:40.958311641  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958313844  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958317418  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : [rtsp @ 0x55a29520b0] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 21:32:40.958320678  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 21:32:40.958323400  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Output file #0 does not contain any stream
2024-02-04 21:32:40.958326807  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958328881  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958332418  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958334344  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958337825  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : [rtsp @ 0x55a4c700b0] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 21:32:40.958514527  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 21:32:40.958519490  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Output file #0 does not contain any stream
2024-02-05 05:29:33.902106417  [2024-02-05 06:29:33] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 05:29:33.993933831  [2024-02-05 06:29:33] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-05 05:29:34.149339371  [2024-02-05 06:29:34] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-05 05:29:44.152298894  [2024-02-05 06:29:44] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-05 05:29:44.153063142  [2024-02-05 06:29:44] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-05 05:29:44.153706819  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] error while decoding MB 13 1, bytestream -11
2024-02-05 05:29:44.154543344  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.155178724  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] Increasing reorder buffer to 1
2024-02-05 05:29:44.155921139  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c7125d0] error while decoding MB 12 1, bytestream -10
2024-02-05 05:29:44.156431262  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.157728707  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c7125d0] error while decoding MB 12 1, bytestream -9
2024-02-05 05:29:44.159535922  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.160729220  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] Increasing reorder buffer to 5
2024-02-05 05:29:44.162258254  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x559c6e1090] RTP: PT=60: bad cseq 02d3 expected=b073
2024-02-05 05:29:44.191243607  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x559c6e1090] RTP: PT=61: bad cseq 05ad expected=51cb
2024-02-05 08:06:17.457072089  [2024-02-05 09:06:17] frigate.record.maintainer      DEBUG   : Copied /media/frigate/recordings/2024-02-05/08/haustuer/06.00.mp4 in 1.133012056350708 seconds.
2024-02-05 08:06:17.517927637  [2024-02-05 09:06:17] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:06:17.525128356  [2024-02-05 09:06:17] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:06:22.584654827  [2024-02-05 09:06:22] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:06:26.746795652  [2024-02-05 09:06:26] frigate.record.maintainer      DEBUG   : Copied /media/frigate/recordings/2024-02-05/08/haustuer/06.10.mp4 in 1.0534729957580566 seconds.
2024-02-05 08:06:27.535232106  [2024-02-05 09:06:27] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:06:27.536708087  [2024-02-05 09:06:27] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:17.850257849  [h264 @ 0x7f74429310] error while decoding MB 44 83, bytestream -5
2024-02-05 08:28:21.549022306  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x5597c7db30] Non-monotonous DTS in output stream 0:0; previous: 3057, current: 501; changing to 3058. This may result in incorrect timestamps in the output file.
2024-02-05 08:28:21.568630030  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x5597c7db30] Non-monotonous DTS in output stream 0:0; previous: 3058, current: 1882; changing to 3059. This may result in incorrect timestamps in the output file.
2024-02-05 08:28:21.580531874  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [rtsp @ 0x559e9620b0] RTP: PT=61: bad cseq 02a7 expected=2550
2024-02-05 08:28:21.581442565  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [rtsp @ 0x559e9620b0] RTP: PT=60: bad cseq 0945 expected=508f
2024-02-05 08:28:21.582324017  [2024-02-05 09:28:21] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-05 08:28:21.583020674  [2024-02-05 09:28:21] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 08:28:32.761075981  [h264 @ 0x7f740e85f0] cabac decode of qscale diff failed at 84 41
2024-02-05 08:28:32.761091073  [h264 @ 0x7f740e85f0] error while decoding MB 84 41, bytestream 730
2024-02-05 08:28:33.740771996  [2024-02-05 09:28:33] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-05 08:28:33.742720730  [2024-02-05 09:28:33] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-05 08:28:37.638924438  [2024-02-05 09:28:37] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-05 08:28:40.316661563  [2024-02-05 09:28:40] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-05 08:28:40.316683415  [2024-02-05 09:28:40] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-05 08:28:40.317387813  [2024-02-05 09:28:40] ffmpeg.coolcassis.detect       ERROR   : [h264 @ 0x55af119c20] Increasing reorder buffer to 1
2024-02-05 08:28:42.690389406  [2024-02-05 09:28:42] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:47.684375349  [2024-02-05 09:28:47] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:52.624262630  [2024-02-05 09:28:52] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-05 08:28:52.686175668  [2024-02-05 09:28:52] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-05 08:29:02.722759327  [2024-02-05 09:29:02] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:12.807745430  [2024-02-05 09:29:12] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:22.725592017  [2024-02-05 09:29:22] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:28.732183940  [2024-02-05 09:29:28] ffmpeg.sam.record              ERROR   : [segment @ 0x5590936b30] Non-monotonous DTS in output stream 0:0; previous: 3092, current: 428; changing to 3093. This may result in incorrect timestamps in the output file.
2024-02-05 08:29:28.732640248  [2024-02-05 09:29:28] ffmpeg.sam.record              ERROR   : [segment @ 0x5590936b30] Non-monotonous DTS in output stream 0:0; previous: 3093, current: 1888; changing to 3094. This may result in incorrect timestamps in the output file.
2024-02-05 08:29:28.743954174  [2024-02-05 09:29:28] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-05 08:29:28.746469289  [2024-02-05 09:29:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 08:29:32.673612251  [2024-02-05 09:29:32] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:42.672563546  [2024-02-05 09:29:42] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:52.710617854  [2024-02-05 09:29:52] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...

FFprobe output from your camera

[{"return_code":1,"stderr":"","stdout":""},{"return_code":1,"stderr":"","stdout":""}]

Frigate stats

{"cameras":{"blackpearl":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":362,"detection_enabled":1,"detection_fps":5.0,"ffmpeg_pid":11837,"pid":340,"process_fps":5.0,"skipped_fps":0.0},"coolcassis":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":368,"detection_enabled":1,"detection_fps":3.6,"ffmpeg_pid":250272,"pid":342,"process_fps":5.0,"skipped_fps":0.0},"haustuer":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":388,"detection_enabled":1,"detection_fps":7.4,"ffmpeg_pid":173484,"pid":349,"process_fps":5.0,"skipped_fps":0.1},"paddock":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":375,"detection_enabled":1,"detection_fps":5.5,"ffmpeg_pid":43840,"pid":345,"process_fps":5.0,"skipped_fps":0.0},"sam":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":372,"detection_enabled":1,"detection_fps":5.3,"ffmpeg_pid":199414,"pid":343,"process_fps":5.1,"skipped_fps":0.0}},"cpu_usages":{"1":{"cmdline":"/package/admin/s6/command/s6-svscan -d4 -- /run/service","cpu":"0.0","cpu_average":"0","mem":"0.0"},"16":{"cmdline":"s6-supervise s6-linux-init-shutdownd","cpu":"0.0","cpu_average":"0","mem":"0.0"},"18":{"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"},"25":{"cmdline":"s6-supervise nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"26":{"cmdline":"s6-supervise go2rtc","cpu":"0.0","cpu_average":"0","mem":"0.0"},"27":{"cmdline":"s6-supervise go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.0"},"28":{"cmdline":"s6-supervise frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"29":{"cmdline":"s6-supervise s6rc-oneshot-runner","cpu":"0.0","cpu_average":"0","mem":"0.0"},"30":{"cmdline":"s6-supervise nginx-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"31":{"cmdline":"s6-supervise s6rc-fdholder","cpu":"0.0","cpu_average":"0","mem":"0.0"},"32":{"cmdline":"s6-supervise go2rtc-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"33":{"cmdline":"s6-supervise frigate-log","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"},"43":{"cmdline":"/package/admin/s6-2.11.3.2/command/s6-fdholderd -1 -i data/rules","cpu":"0.0","cpu_average":"0","mem":"0.0"},"80":{"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.2","cpu_average":"0","mem":"0.0"},"83":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"90":{"cmdline":"/usr/local/go2rtc/bin/go2rtc -config=/dev/shm/go2rtc.yaml","cpu":"14.7","cpu_average":"12","mem":"0.6"},"106":{"cmdline":"bash ./run.user go2rtc-healthcheck","cpu":"0.2","cpu_average":"0","mem":"0.0"},"108":{"cmdline":"python3 -u -m frigate","cpu":"9.2","cpu_average":"7","mem":"3.2"},"123":{"cmdline":"nginx: master process nginx","cpu":"0.0","cpu_average":"0","mem":"0.2"},"142":{"cmdline":"nginx: worker process","cpu":"0.2","cpu_average":"0","mem":"0.2"},"143":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.2"},"144":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"148":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"160":{"cmdline":"nginx: cache manager process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"315":{"cmdline":"frigate.logger       ","cpu":"0.2","cpu_average":"0","mem":"1.1"},"317":{"cmdline":"frigate.recording_manager","cpu":"26.3","cpu_average":"31","mem":"1.9"},"326":{"cmdline":"/usr/bin/python3 -c from multiprocessing.resource_tracker import main;main(57)","cpu":"1.2","cpu_average":"1","mem":"0.1"},"327":{"cmdline":"frigate.detector.coral","cpu":"44.4","cpu_average":"28","mem":"1.5"},"328":{"cmdline":"frigate.output       ","cpu":"4.8","cpu_average":"4","mem":"1.4"},"334":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"336":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"337":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"338":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 640x360 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.4"},"340":{"cmdline":"frigate.process:blackpearl","cpu":"12.7","cpu_average":"8","mem":"1.7"},"341":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 640x360 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.4"},"342":{"cmdline":"frigate.process:coolcassis","cpu":"14.0","cpu_average":"11","mem":"1.6"},"343":{"cmdline":"frigate.process:sam  ","cpu":"13.8","cpu_average":"8","mem":"1.7"},"344":{"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.8"},"345":{"cmdline":"frigate.process:paddock","cpu":"16.0","cpu_average":"12","mem":"1.5"},"349":{"cmdline":"frigate.process:haustuer","cpu":"19.7","cpu_average":"13","mem":"1.5"},"362":{"cmdline":"frigate.capture:blackpearl","cpu":"7.3","cpu_average":"6","mem":"1.4"},"368":{"cmdline":"frigate.capture:coolcassis","cpu":"8.3","cpu_average":"6","mem":"1.4"},"372":{"cmdline":"frigate.capture:sam  ","cpu":"6.9","cpu_average":"6","mem":"4.6"},"375":{"cmdline":"frigate.capture:paddock","cpu":"2.0","cpu_average":"2","mem":"1.3"},"388":{"cmdline":"frigate.capture:haustuer","cpu":"2.8","cpu_average":"2","mem":"1.3"},"11837":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/blackpearl_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"11","mem":"0.7"},"11840":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.33:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/5090228d0d3f924de0592472c989104f","cpu":"0.9","cpu_average":"0","mem":"0.5"},"43840":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/paddock_low -r 5 -vf fps=5,scale=640:360 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"6.6","cpu_average":"6","mem":"0.6"},"43843":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.32:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/095a8d3394d4e8b9e902af753b9dbbbb","cpu":"1.4","cpu_average":"1","mem":"0.5"},"43980":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/paddock_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/paddock@%Y%m%d%H%M%S%z.mp4","cpu":"1.1","cpu_average":"0","mem":"0.5"},"43981":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.32:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/d6b4e5611c340ccdb4cb37d12064fbaa","cpu":"1.8","cpu_average":"1","mem":"0.5"},"66905":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/haustuer_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/haustuer@%Y%m%d%H%M%S%z.mp4","cpu":"0.8","cpu_average":"0","mem":"0.5"},"66918":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/4b9bf7aa13da4943c7a1e08503373845","cpu":"2.4","cpu_average":"2","mem":"0.6"},"173484":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/haustuer_low -r 5 -vf fps=5,scale=640:360 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"6.3","cpu_average":"6","mem":"0.7"},"173486":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb","cpu":"2.1","cpu_average":"2","mem":"0.5"},"199414":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/sam_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.9","cpu_average":"11","mem":"0.8"},"199420":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.35:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/d442e3667cb5cf834869ba3853f0a5e0","cpu":"1.5","cpu_average":"1","mem":"0.5"},"225402":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/coolcassis_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/coolcassis@%Y%m%d%H%M%S%z.mp4","cpu":"3.5","cpu_average":"3","mem":"1.1"},"250218":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.34:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/2ef2648837194d01755ad3f3b9dc3c58","cpu":"5.2","cpu_average":"5","mem":"0.6"},"250272":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/coolcassis_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"11","mem":"0.7"},"250274":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.34:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/2cfb5695cbb70cdbadc87840e69f9bdf","cpu":"1.5","cpu_average":"1","mem":"0.5"},"250483":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/sam_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/sam@%Y%m%d%H%M%S%z.mp4","cpu":"2.6","cpu_average":"2","mem":"0.6"},"250489":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.35:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/76cc488b9460a513a81996dc2d84e9d5","cpu":"5.3","cpu_average":"5","mem":"0.6"},"257321":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/blackpearl_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/blackpearl@%Y%m%d%H%M%S%z.mp4","cpu":"2.9","cpu_average":"4","mem":"0.6"},"257322":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.33:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/1a883c348dcaf80a62bb4bb460b2a431","cpu":"5.6","cpu_average":"9","mem":"0.6"},"257394":{"cmdline":"sleep 30s","cpu":"0.0","cpu_average":"0","mem":"0.0"}},"detection_fps":26.8,"detectors":{"coral":{"detection_start":1707123364.818884,"inference_speed":22.0,"pid":327}},"processes":{"go2rtc":{"pid":90},"logger":{"pid":315},"recording":{"pid":317}},"service":{"last_updated":1707123365,"latest_version":"0.13.1","storage":{"/dev/shm":{"free":3888.5,"mount_type":"tmpfs","total":3904.9,"used":16.4},"/media/frigate/clips":{"free":4969095.2,"mount_type":"cifs","total":6677046.5,"used":1707951.3},"/media/frigate/recordings":{"free":4969095.2,"mount_type":"cifs","total":6677046.5,"used":1707951.3},"/tmp/cache":{"free":3868.4,"mount_type":"tmpfs","total":3904.9,"used":36.5}},"temperatures":{},"uptime":55414,"version":"0.13.1-34fb1c2"}}

Operating system

HassOS

Install method

HassOS Addon

Coral version

USB

Network connection

Wired

Camera make and model

Reolink FE-W and TP-Link C200/C310

Any other information that may be helpful

The events will be stored on my NAS.

About this issue

  • Original URL
  • State: closed
  • Created 5 months ago
  • Comments: 17

Most upvoted comments

oh I see another problem in the config. You have acc but it should be aac

2024-02-06 13:55:20.390034328 [NULL @ 0x55a3312a70] Unable to find a suitable output format for ‘acc’