blakeblackshear / frigate

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

[Config Support]: error occured attempting to maintain recording cache #6213

Closed frankfurts88 closed 1 year ago

frankfurts88 commented 1 year ago

Describe the problem you are having

After upgrading to the latest version 0.12 I'm having a whole lot of issues regarding the cache and timestamps etc... I've tried with go2rtc and also just sending the rtsp feed straight to the recorder since it's the only thing accessing it I don't really need to restream.

I'm just really confused and have no idea what has gone wrong, was working great on the version before.

Version

0.12

Frigate config file

mqtt:
  host: 192.168.0.65
  user: mqtt
  password: xxxxxxxxxxx

detectors:
  coral:
    type: edgetpu
    device: usb

ffmpeg:
  global_args:
    -hide_banner
    -loglevel warning
  input_args: preset-rtsp-generic
  output_args:
    # Optional: output args for detect streams (default: shown below)
    detect: -f rawvideo -pix_fmt yuv420p
    # Optional: output args for record streams (default: shown below)
    record: preset-record-generic

  hwaccel_args: preset-vaapi

record:
  enabled: true
  events:
    retain:
      default: 10

snapshots:
  retain:
    default: 10
    objects:
      person: 15

detect:
  width: 640
  height: 480
  fps: 7   

motion:
  improve_contrast: True 

objects:
  # Optional: list of objects to track from labelmap.txt (default: shown below)
  track:
    - person
    - car
    - dog
    - cat

#go2rtc:
#  streams:
#    driveway:
#      - rtsp://xxxxxxxxxxxxx@192.168.0.187:554/h264Preview_01_main
#    driveway_sub:
#      - rtsp://xxxxxxxxxxxxxx@192.168.0.76:554/h264Preview_01_sub  
#    frontyard:
#      - rtsp://xxxxxxxxxx@192.168.0.76:554/h264Preview_01_main
#    frontyard_sub:
#      - rtsp://xxxxxxxxxxxx@192.168.0.76:554/h264Preview_01_sub 
#    backyard:
#      - rtsp://xxxxxxxxxxxxxx@192.168.0.11:554/stream1
#    backyard_sub:
#      - rtsp://xxxxxxxxxxxxx@192.168.0.11:554/stream2
#    backdoor:
#      - rtsp://xxxxxxxxxxx@192.168.0.12:554/stream1
#    backdoor_sub:
#      - rtsp://xxxxxxxxxxx@192.168.0.12:554/stream2

cameras:
  driveway:
    ffmpeg:
      inputs:
        - path: rtsp://xxxxxxxxxxx@192.168.0.187:554/h264Preview_01_main
#        - path: rtsp://127.0.0.1:8554/driveway
#          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://xxxxxxxxxxxxx@192.168.0.187:554/h264Preview_01_sub
#        - path: rtsp://127.0.0.1:8554/driveway_sub
#          input_args: preset-rtsp-restream
          roles:
            - detect

  frontyard:
    ffmpeg:
      inputs:
        - path: rtsp://xxxxxxxxxxxxxx@192.168.0.76:554/h264Preview_01_main
#        - path: rtsp://127.0.0.1:8554/frontyard
#          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://xxxxxxxxxx@192.168.0.76:554/h264Preview_01_sub   
#        - path: rtsp://127.0.0.1:8554/frontyard_sub
#          input_args: preset-rtsp-restream
          roles:
            - detect

  backyard:
    ffmpeg:
      inputs:
        - path: rtsp://xxxxxxxxxxxx@192.168.0.11:554/stream1
#        - path: rtsp://127.0.0.1:8554/backyard
#          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://xxxxxxxxxxx@192.168.0.11:554/stream2  
#        - path: rtsp://127.0.0.1:8554/backyard_sub
#          input_args: preset-rtsp-restream
          roles:
            - detect

  backdoor:
    ffmpeg:
      inputs:
        - path: rtsp://xxxxxxxxxxxx@192.168.0.12:554/stream1
#        - path: rtsp://127.0.0.1:8554/backdoor
#          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://xxxxxxxx@192.168.0.12:554/stream2
#        - path: rtsp://127.0.0.1:8554/backdoor_sub
#          input_args: preset-rtsp-restream
          roles:
            - detect

Relevant log output

2023-04-23 16:51:50.830236614  [INFO] Starting Frigate...
2023-04-23 16:51:52.217538412  [2023-04-23 16:51:52] frigate.app                    INFO    : Starting Frigate (0.12.0-da3e197)
2023-04-23 16:51:52.251650173  [2023-04-23 16:51:52] frigate.app                    INFO    : Creating directory: /media/frigate/recordings
2023-04-23 16:51:52.251903393  [2023-04-23 16:51:52] frigate.app                    INFO    : Creating directory: /media/frigate/clips
2023-04-23 16:51:52.252136547  [2023-04-23 16:51:52] frigate.app                    INFO    : Creating directory: /tmp/cache
2023-04-23 16:51:52.254545552  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Starting migrations
2023-04-23 16:51:52.270233985  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "001_create_events_table"
2023-04-23 16:51:52.270344441  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE TABLE IF NOT EXISTS "event" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "label" VARCHAR(20) NOT NULL, "camera" VARCHAR(20) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME NOT NULL, "top_score" REAL NOT NULL, "false_positive" INTEGER NOT NULL, "zones" JSON NOT NULL, "thumbnail" TEXT NOT NULL)',)
2023-04-23 16:51:52.270702363  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX IF NOT EXISTS "event_label" ON "event" ("label")',)
2023-04-23 16:51:52.270882680  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX IF NOT EXISTS "event_camera" ON "event" ("camera")',)
2023-04-23 16:51:52.271462862  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 001_create_events_table
2023-04-23 16:51:52.283540775  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "002_add_clip_snapshot"
2023-04-23 16:51:52.283679645  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'has_clip', <BooleanField: Event.has_clip>)
2023-04-23 16:51:52.286374880  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'has_snapshot', <BooleanField: Event.has_snapshot>)
2023-04-23 16:51:52.288578690  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 002_add_clip_snapshot
2023-04-23 16:51:52.300461279  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "003_create_recordings_table"
2023-04-23 16:51:52.300636178  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE TABLE IF NOT EXISTS "recordings" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "camera" VARCHAR(20) NOT NULL, "path" VARCHAR(255) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME NOT NULL, "duration" REAL NOT NULL)',)
2023-04-23 16:51:52.300875462  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX IF NOT EXISTS "recordings_camera" ON "recordings" ("camera")',)
2023-04-23 16:51:52.301238618  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE UNIQUE INDEX IF NOT EXISTS "recordings_path" ON "recordings" ("path")',)
2023-04-23 16:51:52.301567099  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX IF NOT EXISTS "recordings_start_time_end_time" ON "recordings" (start_time, end_time)',)
2023-04-23 16:51:52.302153635  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 003_create_recordings_table
2023-04-23 16:51:52.314554569  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "004_add_bbox_region_area"
2023-04-23 16:51:52.314633233  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'region', <JSONField: Event.region>)
2023-04-23 16:51:52.316820608  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'box', <JSONField: Event.box>)
2023-04-23 16:51:52.318759561  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'area', <IntegerField: Event.area>)
2023-04-23 16:51:52.320753911  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 004_add_bbox_region_area
2023-04-23 16:51:52.332700399  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "005_make_end_time_nullable"
2023-04-23 16:51:52.332799210  [2023-04-23 16:51:52] peewee_migrate                 INFO    : drop_not_null ('event', 'end_time')
2023-04-23 16:51:52.334936111  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 005_make_end_time_nullable
2023-04-23 16:51:52.346208079  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "006_add_motion_active_objects"
2023-04-23 16:51:52.346393233  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('recordings', 'objects', <IntegerField: Recordings.objects>)
2023-04-23 16:51:52.346886055  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('recordings', 'motion', <IntegerField: Recordings.motion>)
2023-04-23 16:51:52.347504625  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 006_add_motion_active_objects
2023-04-23 16:51:52.358439367  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "007_add_retain_indefinitely"
2023-04-23 16:51:52.358532656  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'retain_indefinitely', <BooleanField: Event.retain_indefinitely>)
2023-04-23 16:51:52.360878177  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 007_add_retain_indefinitely
2023-04-23 16:51:52.371671908  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "008_add_sub_label"
2023-04-23 16:51:52.371762034  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'sub_label', <CharField: Event.sub_label>)
2023-04-23 16:51:52.372430869  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 008_add_sub_label
2023-04-23 16:51:52.383249333  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "009_add_object_filter_ratio"
2023-04-23 16:51:52.383340304  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'ratio', <FloatField: Event.ratio>)
2023-04-23 16:51:52.385654963  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 009_add_object_filter_ratio
2023-04-23 16:51:52.396755817  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "010_add_plus_image_id"
2023-04-23 16:51:52.396861357  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('event', 'plus_id', <CharField: Event.plus_id>)
2023-04-23 16:51:52.397515026  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 010_add_plus_image_id
2023-04-23 16:51:52.407954843  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "011_update_indexes"
2023-04-23 16:51:52.408191377  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX "event_start_time_end_time" ON "event" ("start_time" DESC, "end_time" DESC)',)
2023-04-23 16:51:52.408492743  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('DROP INDEX recordings_start_time_end_time',)
2023-04-23 16:51:52.408942458  [2023-04-23 16:51:52] peewee_migrate                 INFO    : sql ('CREATE INDEX "recordings_end_time_start_time" ON "recordings" ("end_time" DESC, "start_time" DESC)',)
2023-04-23 16:51:52.409568363  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 011_update_indexes
2023-04-23 16:51:52.421062248  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Migrate "012_add_segment_size"
2023-04-23 16:51:52.421178571  [2023-04-23 16:51:52] peewee_migrate                 INFO    : add_column ('recordings', 'segment_size', <FloatField: Recordings.segment_size>)
2023-04-23 16:51:52.423913417  [2023-04-23 16:51:52] peewee_migrate                 INFO    : Done 012_add_segment_size
2023-04-23 16:51:52.457337880  [2023-04-23 16:51:52] frigate.app                    INFO    : Output process started: 291
2023-04-23 16:51:52.470938021  [2023-04-23 16:51:52] detector.coral                 INFO    : Starting detection process: 290
2023-04-23 16:51:55.140210248  [2023-04-23 16:51:52] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2023-04-23 16:51:55.140213772  [2023-04-23 16:51:52] frigate.app                    INFO    : Camera processor started for driveway: 294
2023-04-23 16:51:55.140215752  [2023-04-23 16:51:52] frigate.app                    INFO    : Camera processor started for frontyard: 296
2023-04-23 16:51:55.140217563  [2023-04-23 16:51:52] frigate.app                    INFO    : Camera processor started for backyard: 298
2023-04-23 16:51:55.140221681  [2023-04-23 16:51:52] frigate.app                    INFO    : Camera processor started for backdoor: 299
2023-04-23 16:51:55.140234964  [2023-04-23 16:51:52] frigate.app                    INFO    : Capture process started for driveway: 302
2023-04-23 16:51:55.140236985  [2023-04-23 16:51:52] frigate.app                    INFO    : Capture process started for frontyard: 303
2023-04-23 16:51:55.140418376  [2023-04-23 16:51:52] frigate.app                    INFO    : Capture process started for backyard: 304
2023-04-23 16:51:55.140420889  [2023-04-23 16:51:52] frigate.app                    INFO    : Capture process started for backdoor: 309
2023-04-23 16:51:55.146193456  [2023-04-23 16:51:55] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2023-04-23 16:53:02.575402819  [2023-04-23 16:53:02] ffmpeg.driveway.record         ERROR   : [segment @ 0x5630de64be40] 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-04-23 16:53:02.575406389  [2023-04-23 16:53:02] ffmpeg.driveway.record         ERROR   : [rtsp @ 0x5630de62c040] CSeq 7 expected, 0 received.
2023-04-23 16:53:02.575890001  [2023-04-23 16:53:02] ffmpeg.driveway.record         ERROR   :     Last message repeated 9 times
2023-04-23 16:53:02.575893303  [2023-04-23 16:53:02] ffmpeg.driveway.record         ERROR   : [NULL @ 0x5630de631500] missing picture in access unit with size 17304
2023-04-23 16:53:02.577202957  [2023-04-23 16:53:02] ffmpeg.driveway.record         ERROR   : rtsp://*:*@192.168.0.187:554/h264Preview_01_main: Connection timed out
2023-04-23 16:53:02.580265587  [2023-04-23 16:53:02] watchdog.driveway              INFO    : Terminating the existing ffmpeg process...
2023-04-23 16:53:02.580483174  [2023-04-23 16:53:02] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-23 16:53:12.583613514  [2023-04-23 16:53:12] ffmpeg.frontyard.record        ERROR   : [segment @ 0x556400c6a500] 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-04-23 16:53:12.587632190  [2023-04-23 16:53:12] watchdog.driveway              INFO    : No frames received from driveway in 20 seconds. Exiting ffmpeg...
2023-04-23 16:53:12.587636067  [2023-04-23 16:53:12] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-23 16:53:12.587832587  [2023-04-23 16:53:12] ffmpeg.frontyard.record        ERROR   : rtsp://*:*@192.168.0.76:554/h264Preview_01_main: Connection timed out
2023-04-23 16:53:12.588022356  [2023-04-23 16:53:12] watchdog.frontyard             INFO    : Terminating the existing ffmpeg process...
2023-04-23 16:53:12.588242413  [2023-04-23 16:53:12] watchdog.frontyard             INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-23 16:53:12.644559987  [2023-04-23 16:53:12] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-23 16:53:12.645305804  [2023-04-23 16:53:12] frigate.video                  ERROR   : driveway: ffmpeg process is not running. exiting capture thread...
2023-04-23 16:53:17.769631673  [2023-04-23 16:53:17] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:17.769731835  [2023-04-23 16:53:17] frigate.record                 ERROR   : list index out of range
2023-04-23 16:53:22.646506569  [2023-04-23 16:53:22] watchdog.driveway              ERROR   : Ffmpeg process crashed unexpectedly for driveway.
2023-04-23 16:53:22.646681456  [2023-04-23 16:53:22] watchdog.driveway              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-23 16:53:22.646684087  [2023-04-23 16:53:22] ffmpeg.driveway.detect         ERROR   : rtsp://*:*@192.168.0.187:554/h264Preview_01_sub: Connection timed out
2023-04-23 16:53:22.683869835  [2023-04-23 16:53:22] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:22.683971280  [2023-04-23 16:53:22] frigate.record                 ERROR   : list index out of range
2023-04-23 16:53:27.907878403  [2023-04-23 16:53:27] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:27.907930486  [2023-04-23 16:53:27] frigate.record                 ERROR   : list index out of range
2023-04-23 16:53:32.592595259  [2023-04-23 16:53:32] watchdog.frontyard             INFO    : No frames received from frontyard in 20 seconds. Exiting ffmpeg...
2023-04-23 16:53:32.592762311  [2023-04-23 16:53:32] watchdog.frontyard             INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-23 16:53:32.624325059  [2023-04-23 16:53:32] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-23 16:53:32.624567559  [2023-04-23 16:53:32] frigate.video                  ERROR   : frontyard: ffmpeg process is not running. exiting capture thread...
2023-04-23 16:53:32.687271475  [2023-04-23 16:53:32] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:32.687394773  [2023-04-23 16:53:32] frigate.record                 ERROR   : list index out of range
2023-04-23 16:53:37.771237275  [2023-04-23 16:53:37] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:37.771411068  [2023-04-23 16:53:37] frigate.record                 ERROR   : list index out of range
2023-04-23 16:53:42.626743874  [2023-04-23 16:53:42] watchdog.frontyard             ERROR   : Ffmpeg process crashed unexpectedly for frontyard.
2023-04-23 16:53:42.626748043  [2023-04-23 16:53:42] watchdog.frontyard             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-23 16:53:42.626750174  [2023-04-23 16:53:42] ffmpeg.frontyard.detect        ERROR   : rtsp://*:*@192.168.0.76:554/h264Preview_01_sub: Connection timed out
2023-04-23 16:53:42.687555519  [2023-04-23 16:53:42] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-23 16:53:42.687657189  [2023-04-23 16:53:42] frigate.record                 ERROR   : list index out of range
2023-04-23 16:57:12.578367913  [2023-04-23 16:57:12] ffmpeg.backdoor.record         ERROR   : [segment @ 0x560850c056c0] Non-monotonous DTS in output stream 0:0; previous: 862092, current: 862092; changing to 862093. This may result in incorrect timestamps in the output file.
2023-04-23 16:57:12.578450419  [2023-04-23 16:57:12] ffmpeg.backdoor.record         ERROR   : [segment @ 0x560850c056c0] Non-monotonous DTS in output stream 0:0; previous: 862093, current: 862093; changing to 862094. This may result in incorrect timestamps in the output file.
2023-04-23 16:57:12.578719289  [2023-04-23 16:57:12] ffmpeg.backdoor.record         ERROR   : [segment @ 0x560850c056c0] Non-monotonous DTS in output stream 0:0; previous: 862094, current: 862093; changing to 862095. This may result in incorrect timestamps in the output file.

Frigate stats

No response

Operating system

Proxmox

Install method

Docker Compose

Coral version

USB

Any other information that may be helpful

There is some code in my config I hashed out as I initially thought go2rtc was causing the problem.

NickM-27 commented 1 year ago

you should really not be overriding global_args or detect output args as they will work better if you just let frigate use the defaults

frankfurts88 commented 1 year ago

Ok I'll get rid of those and see how it goes thanks.

frankfurts88 commented 1 year ago

The errors returned again so I recreated the container with the new config and it looks ok for now I'll check on it again in an hour or so and see if they return.

frankfurts88 commented 1 year ago

Yeah no good after a few minutes the errors returned

NickM-27 commented 1 year ago

it's receiving a lot of issues and timeouts. You should be following the recommended config for reolink which is to use http-flv not rtsp

frankfurts88 commented 1 year ago

Ok I will do that but only 2 of the cameras are Reolink the other 2 are Tp-Link vigi and have the same errors. Also it was working fine on the old version.

I will change it though and see if it helps.

frankfurts88 commented 1 year ago

I enabled http on the camera but can't get the http stream to work, I replied on the discussion linked in the docs. I reverted back to rtsp as it was working fine on the last build. I also enabled debug on the locks and have since found this error.

"Unable to keep up with recording segments in cache for . Keeping the 5 most recent segments out of 6 and discarding the rest..." pops up at the same time as the cache error.

"[out_0_0 @ 0x556566cd2380] 1000 buffers queued in out_0_0, something may be wrong. 2023-04-26 01:06:38.120326056"

"watchdog. INFO : exceeded fps limit. Exiting ffmpeg...

I only have 4 cameras on an i56 500t with a coral and 12gb ram. Also recording to a 512GB NVME drive.

my current config.yml


mqtt:
  host: 192.168.0.65
  user: xxx
  password: xxx

detectors:
  coral:
    type: edgetpu
    device: usb

ffmpeg:
  input_args: preset-rtsp-generic
  output_args:
    # Optional: output args for record streams (default: shown below)
    record: preset-record-generic

  hwaccel_args: preset-vaapi

record:
  enabled: true
  events:
    retain:
      default: 10

snapshots:
  retain:
    default: 10
    objects:
      person: 15

detect:
  width: 640
  height: 480
  fps: 7   

motion:
  improve_contrast: True 

objects:
  # Optional: list of objects to track from labelmap.txt (default: shown below)
  track:
    - person
    - car
    - dog
    - cat

logger:
  logs:
    frigate.record: debug

go2rtc:
  streams:
    driveway:
       - rtsp://user:pass@192.168.0.187:554/h264Preview_01_main
    driveway_sub:
       - rtsp://user:pass@192.168.0.187:554/h264Preview_01_sub 
    frontyard:
       - rtsp://user:pass@192.168.0.76:554/h264Preview_01_main
    frontyard_sub:
       - rtsp://user:pass@192.168.0.76:554/h264Preview_01_sub
    backyard:
      - rtsp://user:pass@192.168.0.11:554/stream1
    backyard_sub:
      - rtsp://user:pass@192.168.0.11:554/stream2
    backdoor:
      - rtsp://user:pass@192.168.0.12:554/stream1
    backdoor_sub:
      - rtsp://user:pass@192.168.0.12:554/stream2

cameras:
  driveway:
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/driveway
          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://127.0.0.1:8554/driveway_sub
          input_args: preset-rtsp-restream
          roles:
            - detect

  frontyard:
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/frontyard
          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://127.0.0.1:8554/frontyard_sub
          input_args: preset-rtsp-restream
          roles:
            - detect

  backyard:
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/backyard
          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://127.0.0.1:8554/backyard_sub
          input_args: preset-rtsp-restream
          roles:
            - detect

  backdoor:
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/backdoor
          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://127.0.0.1:8554/backdoor_sub
          input_args: preset-rtsp-restream
          roles:
            - detect`
NickM-27 commented 1 year ago

It would be better to see a full copy of the logs

frankfurts88 commented 1 year ago

Sure I'm on my phone at the moment so and it won't let me copy since it's a full day's worth and won't fit the clip board. I'll provide a snippet when I get back to my PC.

Thanks for helping me out, I really appreciate it.

frankfurts88 commented 1 year ago
2023-04-26 00:52:15.737695354  [INFO] Starting Frigate...
2023-04-26 00:52:17.142828050  [2023-04-26 00:52:17] frigate.app                    INFO    : Starting Frigate (0.12.0-da3e197)
2023-04-26 00:52:17.176123035  [2023-04-26 00:52:17] peewee_migrate                 INFO    : Starting migrations
2023-04-26 00:52:17.181257420  [2023-04-26 00:52:17] peewee_migrate                 INFO    : There is nothing to migrate
2023-04-26 00:52:17.200155222  [2023-04-26 00:52:17] frigate.app                    INFO    : Output process started: 289
2023-04-26 00:52:17.208360178  [2023-04-26 00:52:17] frigate.app                    INFO    : Camera processor started for driveway: 293
2023-04-26 00:52:17.210998792  [2023-04-26 00:52:17] frigate.app                    INFO    : Camera processor started for frontyard: 294
2023-04-26 00:52:17.213853282  [2023-04-26 00:52:17] detector.coral                 INFO    : Starting detection process: 288
2023-04-26 00:52:17.220038865  [2023-04-26 00:52:17] frigate.app                    INFO    : Camera processor started for backyard: 295
2023-04-26 00:52:17.225315446  [2023-04-26 00:52:17] frigate.app                    INFO    : Camera processor started for backdoor: 299
2023-04-26 00:52:17.229004326  [2023-04-26 00:52:17] frigate.app                    INFO    : Capture process started for driveway: 300
2023-04-26 00:52:17.238285460  [2023-04-26 00:52:17] frigate.app                    INFO    : Capture process started for frontyard: 301
2023-04-26 00:52:17.243018283  [2023-04-26 00:52:17] frigate.app                    INFO    : Capture process started for backyard: 305
2023-04-26 00:52:17.248145581  [2023-04-26 00:52:17] frigate.app                    INFO    : Capture process started for backdoor: 308
2023-04-26 00:52:19.865660785  [2023-04-26 00:52:17] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2023-04-26 00:52:19.874032857  [2023-04-26 00:52:19] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2023-04-26 00:52:22.369929485  [2023-04-26 00:52:22] frigate.record                 WARNING : Unable to keep up with recording segments in cache for driveway. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-04-26 00:52:22.408718585  [2023-04-26 00:52:22] frigate.record                 ERROR   : Error occurred when attempting to maintain recording cache
2023-04-26 00:52:22.408833577  [2023-04-26 00:52:22] frigate.record                 ERROR   : list index out of range
2023-04-26 00:53:17.363280680  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start expire recordings (new).
2023-04-26 00:53:17.363283970  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start deleted cameras.
2023-04-26 00:53:17.413284272  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Expiring 0 recordings
2023-04-26 00:53:17.414439860  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End deleted cameras.
2023-04-26 00:53:17.414488373  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start all cameras.
2023-04-26 00:53:17.414637405  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start camera: driveway.
2023-04-26 00:53:17.684198608  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Expiring 0 recordings
2023-04-26 00:53:17.684303995  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End camera: driveway.
2023-04-26 00:53:17.684364985  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start camera: frontyard.
2023-04-26 00:53:17.760726212  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Expiring 0 recordings
2023-04-26 00:53:17.760811214  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End camera: frontyard.
2023-04-26 00:53:17.760863673  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start camera: backyard.
2023-04-26 00:53:17.765790276  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Expiring 0 recordings
2023-04-26 00:53:17.765922869  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End camera: backyard.
2023-04-26 00:53:17.765946136  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start camera: backdoor.
2023-04-26 00:53:17.775714373  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Expiring 0 recordings
2023-04-26 00:53:17.775862751  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End camera: backdoor.
2023-04-26 00:53:17.775964115  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End all cameras.
2023-04-26 00:53:17.776945176  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End expire recordings (new).
2023-04-26 00:53:17.776948203  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Start expire files (legacy).
2023-04-26 00:53:17.778563737  [2023-04-26 00:53:17] frigate.record                 DEBUG   : Oldest recording in the db: 1682280095.0808418
2023-04-26 00:53:17.913439730  [2023-04-26 00:53:17] frigate.record                 DEBUG   : End expire files (legacy).
2023-04-26 00:57:32.751623186  [2023-04-26 00:57:32] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/frontyard/57.18.mp4 in 0.10252904891967773 seconds.
2023-04-26 00:57:52.670200654  [2023-04-26 00:57:52] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/frontyard/57.38.mp4 in 0.10173892974853516 seconds.
2023-04-26 00:58:02.676218284  [2023-04-26 00:58:02] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/frontyard/57.48.mp4 in 0.10410499572753906 seconds.
2023-04-26 01:00:02.576934531  [2023-04-26 01:00:02] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/driveway/59.49.mp4 in 0.0970001220703125 seconds.
2023-04-26 01:00:02.778498021  [2023-04-26 01:00:02] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/frontyard/59.48.mp4 in 0.10127401351928711 seconds.
2023-04-26 01:00:12.575091554  [2023-04-26 01:00:12] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/00/driveway/59.59.mp4 in 0.09330296516418457 seconds.
2023-04-26 01:03:42.724199078  [2023-04-26 01:03:42] frigate.record                 WARNING : Discarding a corrupt recording segment: /tmp/cache/driveway-20230426010329.mp4
2023-04-26 01:03:47.338916754  [2023-04-26 01:03:47] watchdog.driveway              INFO    : driveway exceeded fps limit. Exiting ffmpeg...
2023-04-26 01:03:47.339493904  [2023-04-26 01:03:47] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:03:47.354967220  [2023-04-26 01:03:47] watchdog.frontyard             INFO    : frontyard exceeded fps limit. Exiting ffmpeg...
2023-04-26 01:03:47.355580852  [2023-04-26 01:03:47] watchdog.frontyard             INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:04:07.356133144  [2023-04-26 01:04:07] watchdog.backdoor              INFO    : No frames received from backdoor in 20 seconds. Exiting ffmpeg...
2023-04-26 01:04:07.356136569  [2023-04-26 01:04:07] watchdog.backdoor              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:04:07.356605491  [2023-04-26 01:04:07] watchdog.backyard              INFO    : No frames received from backyard in 20 seconds. Exiting ffmpeg...
2023-04-26 01:04:07.356788860  [2023-04-26 01:04:07] watchdog.backyard              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:04:07.436511335  [2023-04-26 01:04:07] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.436758500  [2023-04-26 01:04:07] frigate.video                  ERROR   : backyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:04:07.440242190  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.440246009  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.440247917  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.440262887  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.440874835  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.440877740  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.442288675  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.442294113  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.442296103  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:04:07.442298084  [2023-04-26 01:04:07] frigate.video                  ERROR   : backdoor: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:04:17.369845667  [2023-04-26 01:04:17] watchdog.driveway              INFO    : FFmpeg did not exit. Force killing...
2023-04-26 01:04:17.382816377  [2023-04-26 01:04:17] watchdog.frontyard             INFO    : FFmpeg did not exit. Force killing...
2023-04-26 01:04:17.442270360  [2023-04-26 01:04:17] watchdog.backyard              ERROR   : Ffmpeg process crashed unexpectedly for backyard.
2023-04-26 01:04:17.442274097  [2023-04-26 01:04:17] watchdog.backyard              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:04:17.442275938  [2023-04-26 01:04:17] ffmpeg.backyard.detect         ERROR   : [rtsp @ 0x5574cc50ce40] RTP: PT=60: bad cseq accf expected=591b
2023-04-26 01:04:17.445989913  [2023-04-26 01:04:17] watchdog.backdoor              ERROR   : Ffmpeg process crashed unexpectedly for backdoor.
2023-04-26 01:04:17.445993759  [2023-04-26 01:04:17] watchdog.backdoor              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:04:17.445995788  [2023-04-26 01:04:17] ffmpeg.backdoor.detect         ERROR   : [rtsp @ 0x55fed0c2be40] RTP: PT=60: bad cseq 2e56 expected=5105
2023-04-26 01:04:17.710016343  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.710020179  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.710022191  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.710023860  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.710025540  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.710028132  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714455173  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714459138  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714461148  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714462811  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714464462  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714466013  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714467553  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714470033  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714473357  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714475103  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714500453  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714502340  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714504271  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714505836  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714519267  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714520872  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714522900  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714524415  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.714525959  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732543002  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732546556  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732548607  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732550357  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732552237  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732554041  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732555866  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732557646  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732559448  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732561176  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732562957  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.732564695  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733676589  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733679356  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733681212  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733683079  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733684857  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733686740  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.733688624  [2023-04-26 01:04:17] frigate.video                  ERROR   : driveway: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:04:17.738633478  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:04:17.738637696  [2023-04-26 01:04:17] frigate.video                  ERROR   : frontyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:04:27.732064044  [2023-04-26 01:04:27] watchdog.driveway              ERROR   : Ffmpeg process crashed unexpectedly for driveway.
2023-04-26 01:04:27.732216199  [2023-04-26 01:04:27] watchdog.driveway              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:04:27.732316860  [2023-04-26 01:04:27] ffmpeg.driveway.detect         ERROR   : [rtsp @ 0x5574c79fae40] RTP: PT=61: bad cseq e9ac expected=1188
2023-04-26 01:04:27.732500325  [2023-04-26 01:04:27] ffmpeg.driveway.detect         ERROR   : [rtsp @ 0x5574c79fae40] RTP: PT=60: bad cseq 3795 expected=6c60
2023-04-26 01:04:27.732614882  [2023-04-26 01:04:27] ffmpeg.driveway.detect         ERROR   : [out_0_0 @ 0x5574c7b2bbc0] 100 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:04:27.732727169  [2023-04-26 01:04:27] ffmpeg.driveway.detect         ERROR   : [out_0_0 @ 0x5574c7b2bbc0] 1000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:04:27.732836876  [2023-04-26 01:04:27] ffmpeg.driveway.detect         ERROR   : [out_0_0 @ 0x5574c7b2bbc0] 10000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:04:27.743380899  [2023-04-26 01:04:27] watchdog.frontyard             ERROR   : Ffmpeg process crashed unexpectedly for frontyard.
2023-04-26 01:04:27.743839063  [2023-04-26 01:04:27] watchdog.frontyard             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:04:27.744009534  [2023-04-26 01:04:27] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x564b3f0e9e40] RTP: PT=61: bad cseq bd46 expected=63f1
2023-04-26 01:04:27.744012173  [2023-04-26 01:04:27] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x564b3f0e9e40] RTP: PT=60: bad cseq 0703 expected=b62e
2023-04-26 01:04:27.744014146  [2023-04-26 01:04:27] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x564b3f1bbb40] 100 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:04:27.744175716  [2023-04-26 01:04:27] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x564b3f1bbb40] 1000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:04:32.928343936  [2023-04-26 01:04:32] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.30.mp4 in 0.08796501159667969 seconds.
2023-04-26 01:04:33.122491454  [2023-04-26 01:04:33] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.31.mp4 in 0.09882402420043945 seconds.
2023-04-26 01:04:33.690429506  [2023-04-26 01:04:33] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/04.30.mp4 in 0.10061192512512207 seconds.
2023-04-26 01:04:37.586175854  [2023-04-26 01:04:37] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.32.mp4 in 0.09633183479309082 seconds.
2023-04-26 01:04:37.770922008  [2023-04-26 01:04:37] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.33.mp4 in 0.09099102020263672 seconds.
2023-04-26 01:04:37.952008465  [2023-04-26 01:04:37] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.34.mp4 in 0.08950304985046387 seconds.
2023-04-26 01:04:38.142126261  [2023-04-26 01:04:38] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.35.mp4 in 0.09545707702636719 seconds.
2023-04-26 01:04:38.317758262  [2023-04-26 01:04:38] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.36.mp4 in 0.08686089515686035 seconds.
2023-04-26 01:04:38.510199595  [2023-04-26 01:04:38] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/04.31.mp4 in 0.09377193450927734 seconds.
2023-04-26 01:04:42.670206040  [2023-04-26 01:04:42] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.37.mp4 in 0.09294986724853516 seconds.
2023-04-26 01:04:42.854407020  [2023-04-26 01:04:42] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.38.mp4 in 0.09007692337036133 seconds.
2023-04-26 01:04:43.043396240  [2023-04-26 01:04:43] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.39.mp4 in 0.09776592254638672 seconds.
2023-04-26 01:04:43.231173894  [2023-04-26 01:04:43] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/04.40.mp4 in 0.09144020080566406 seconds.
2023-04-26 01:05:08.318672339  [2023-04-26 01:05:08] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.03.mp4 in 0.09733796119689941 seconds.
2023-04-26 01:05:08.510630231  [2023-04-26 01:05:08] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.04.mp4 in 0.09470891952514648 seconds.
2023-04-26 01:05:08.705818776  [2023-04-26 01:05:08] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.05.mp4 in 0.09665393829345703 seconds.
2023-04-26 01:05:13.041767109  [2023-04-26 01:05:13] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.06.mp4 in 0.09409713745117188 seconds.
2023-04-26 01:05:17.669701325  [2023-04-26 01:05:17] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/05.12.mp4 in 0.0883638858795166 seconds.
2023-04-26 01:05:17.848311827  [2023-04-26 01:05:17] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/05.13.mp4 in 0.08881306648254395 seconds.
2023-04-26 01:05:18.025624629  [2023-04-26 01:05:18] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/05.14.mp4 in 0.08779287338256836 seconds.
2023-04-26 01:05:18.207304674  [2023-04-26 01:05:18] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/driveway/05.15.mp4 in 0.08913803100585938 seconds.
2023-04-26 01:05:18.688980161  [2023-04-26 01:05:18] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.13.mp4 in 0.09521794319152832 seconds.
2023-04-26 01:05:18.877370103  [2023-04-26 01:05:18] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.14.mp4 in 0.09243416786193848 seconds.
2023-04-26 01:05:19.070394206  [2023-04-26 01:05:19] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.15.mp4 in 0.09580612182617188 seconds.
2023-04-26 01:05:23.027074904  [2023-04-26 01:05:23] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.16.mp4 in 0.09524893760681152 seconds.
2023-04-26 01:05:23.226005524  [2023-04-26 01:05:23] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/05.17.mp4 in 0.0987999439239502 seconds.
2023-04-26 01:05:47.932198522  [2023-04-26 01:05:47] frigate.record                 WARNING : Discarding a corrupt recording segment: /tmp/cache/frontyard-20230426010545.mp4
2023-04-26 01:05:57.754838790  [2023-04-26 01:05:57] watchdog.frontyard             INFO    : frontyard exceeded fps limit. Exiting ffmpeg...
2023-04-26 01:05:57.754843107  [2023-04-26 01:05:57] watchdog.frontyard             INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:06:07.457590153  [2023-04-26 01:06:07] watchdog.backyard              INFO    : No frames received from backyard in 20 seconds. Exiting ffmpeg...
2023-04-26 01:06:07.457593748  [2023-04-26 01:06:07] watchdog.backyard              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:06:07.506542542  [2023-04-26 01:06:07] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:07.507000086  [2023-04-26 01:06:07] frigate.video                  ERROR   : backyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:06:17.508180912  [2023-04-26 01:06:17] watchdog.backyard              ERROR   : Ffmpeg process crashed unexpectedly for backyard.
2023-04-26 01:06:17.508283063  [2023-04-26 01:06:17] watchdog.backyard              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:06:17.508285430  [2023-04-26 01:06:17] ffmpeg.backyard.detect         ERROR   : [rtsp @ 0x564ef56a3e40] RTP: PT=60: bad cseq 9c7e expected=164f
2023-04-26 01:06:27.782204686  [2023-04-26 01:06:27] watchdog.frontyard             INFO    : FFmpeg did not exit. Force killing...
2023-04-26 01:06:28.115138737  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.115796850  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.115799630  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.116267931  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.116270548  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.116738048  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.116740593  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.117491688  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.117494311  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.117972902  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.117975403  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.118449419  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.118451951  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.118644454  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.119648848  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:06:28.119869628  [2023-04-26 01:06:28] frigate.video                  ERROR   : frontyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:06:38.120312846  [2023-04-26 01:06:38] watchdog.frontyard             ERROR   : Ffmpeg process crashed unexpectedly for frontyard.
2023-04-26 01:06:38.120316610  [2023-04-26 01:06:38] watchdog.frontyard             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:06:38.120318553  [2023-04-26 01:06:38] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x556566bb9e40] RTP: PT=61: bad cseq 9415 expected=db98
2023-04-26 01:06:38.120320325  [2023-04-26 01:06:38] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x556566bb9e40] RTP: PT=60: bad cseq d840 expected=88eb
2023-04-26 01:06:38.120322248  [2023-04-26 01:06:38] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x556566cd2380] 100 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:06:38.120324143  [2023-04-26 01:06:38] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x556566cd2380] 1000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:06:38.120326056  [2023-04-26 01:06:38] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x556566cd2380] 10000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:07:43.335261337  [2023-04-26 01:07:43] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/07.40.mp4 in 0.09276604652404785 seconds.
2023-04-26 01:07:47.472639758  [2023-04-26 01:07:47] watchdog.backdoor              ERROR   : No new recording segments were created for backdoor in the last 120s. restarting the ffmpeg record process...
2023-04-26 01:07:47.472643368  [2023-04-26 01:07:47] watchdog.backdoor              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:07:47.472645333  [2023-04-26 01:07:47] watchdog.backdoor              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:07:47.522776534  [2023-04-26 01:07:47] watchdog.backyard              ERROR   : No new recording segments were created for backyard in the last 120s. restarting the ffmpeg record process...
2023-04-26 01:07:47.523016021  [2023-04-26 01:07:47] watchdog.backyard              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:07:47.523018675  [2023-04-26 01:07:47] watchdog.backyard              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:07:48.052205825  [2023-04-26 01:07:48] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/07.41.mp4 in 0.09538388252258301 seconds.
2023-04-26 01:07:48.238502146  [2023-04-26 01:07:48] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/07.42.mp4 in 0.09070491790771484 seconds.
2023-04-26 01:07:48.422507775  [2023-04-26 01:07:48] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/07.43.mp4 in 0.09156084060668945 seconds.
2023-04-26 01:08:03.438994582  [2023-04-26 01:08:03] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/07.59.mp4 in 0.09145307540893555 seconds.
2023-04-26 01:08:03.625770339  [2023-04-26 01:08:03] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/08.00.mp4 in 0.09247183799743652 seconds.
2023-04-26 01:08:08.046346735  [2023-04-26 01:08:08] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/08.01.mp4 in 0.09120583534240723 seconds.
2023-04-26 01:10:52.496769386  [2023-04-26 01:10:52] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/10.36.mp4 in 0.04079914093017578 seconds.
2023-04-26 01:11:02.495044195  [2023-04-26 01:11:02] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/10.48.mp4 in 0.039994001388549805 seconds.
2023-04-26 01:11:12.492938496  [2023-04-26 01:11:12] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/11.00.mp4 in 0.036559104919433594 seconds.
2023-04-26 01:12:12.496623035  [2023-04-26 01:12:12] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/12.00.mp4 in 0.03792977333068848 seconds.
2023-04-26 01:12:27.495702950  [2023-04-26 01:12:27] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/12.12.mp4 in 0.036476850509643555 seconds.
2023-04-26 01:12:37.499575591  [2023-04-26 01:12:37] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/12.24.mp4 in 0.04001903533935547 seconds.
2023-04-26 01:13:03.128410664  [2023-04-26 01:13:03] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/12.56.mp4 in 0.09078097343444824 seconds.
2023-04-26 01:13:27.500413499  [2023-04-26 01:13:27] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/backdoor/13.12.mp4 in 0.03781604766845703 seconds.
2023-04-26 01:13:28.558942698  [2023-04-26 01:13:28] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/13.25.mp4 in 0.09304094314575195 seconds.
2023-04-26 01:13:33.052847105  [2023-04-26 01:13:33] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/13.26.mp4 in 0.08904695510864258 seconds.
2023-04-26 01:13:33.231971281  [2023-04-26 01:13:33] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/13.27.mp4 in 0.08899807929992676 seconds.
2023-04-26 01:13:48.301958201  [2023-04-26 01:13:48] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/13.44.mp4 in 0.09105801582336426 seconds.
2023-04-26 01:13:48.484932773  [2023-04-26 01:13:48] frigate.record                 DEBUG   : Copied /media/frigate/recordings/2023-04-26/01/frontyard/13.45.mp4 in 0.09088587760925293 seconds.
2023-04-26 01:14:07.766751561  [2023-04-26 01:14:07] watchdog.driveway              INFO    : driveway exceeded fps limit. Exiting ffmpeg...
2023-04-26 01:14:07.767503699  [2023-04-26 01:14:07] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:08.027151133  [2023-04-26 01:14:08] frigate.record                 WARNING : Discarding a corrupt recording segment: /tmp/cache/driveway-20230426011405.mp4
2023-04-26 01:14:08.154880575  [2023-04-26 01:14:08] watchdog.frontyard             INFO    : frontyard exceeded fps limit. Exiting ffmpeg...
2023-04-26 01:14:08.154884283  [2023-04-26 01:14:08] watchdog.frontyard             INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:17.565207690  [2023-04-26 01:14:17] watchdog.backyard              INFO    : No frames received from backyard in 20 seconds. Exiting ffmpeg...
2023-04-26 01:14:17.565391887  [2023-04-26 01:14:17] watchdog.backyard              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:17.640166205  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.640170265  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.640172286  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.640174148  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.640175994  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.640177887  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.642499684  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.642503389  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.642505292  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.642507209  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.643677001  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.644660781  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.646390748  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.647293207  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.648671761  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.649550293  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.650842067  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.651959757  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:17.652610249  [2023-04-26 01:14:17] frigate.video                  ERROR   : backyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:14:27.610595947  [2023-04-26 01:14:27] watchdog.backdoor              INFO    : No frames received from backdoor in 20 seconds. Exiting ffmpeg...
2023-04-26 01:14:27.610599508  [2023-04-26 01:14:27] watchdog.backdoor              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:27.639846868  [2023-04-26 01:14:27] frigate.video                  ERROR   : backdoor: Unable to read frames from ffmpeg process.
2023-04-26 01:14:27.639851202  [2023-04-26 01:14:27] frigate.video                  ERROR   : backdoor: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:14:27.661928109  [2023-04-26 01:14:27] watchdog.backyard              ERROR   : Ffmpeg process crashed unexpectedly for backyard.
2023-04-26 01:14:27.661932181  [2023-04-26 01:14:27] watchdog.backyard              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:14:27.661934192  [2023-04-26 01:14:27] ffmpeg.backyard.detect         ERROR   : [rtsp @ 0x5630523ece40] RTP: PT=60: bad cseq 513e expected=bd5d
2023-04-26 01:14:37.645320173  [2023-04-26 01:14:37] watchdog.backdoor              ERROR   : Ffmpeg process crashed unexpectedly for backdoor.
2023-04-26 01:14:37.645580421  [2023-04-26 01:14:37] watchdog.backdoor              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:14:37.645685191  [2023-04-26 01:14:37] ffmpeg.backdoor.detect         ERROR   : [rtsp @ 0x562e36d19e40] RTP: PT=60: bad cseq 640e expected=1659
2023-04-26 01:14:37.798475340  [2023-04-26 01:14:37] watchdog.driveway              INFO    : FFmpeg did not exit. Force killing...
2023-04-26 01:14:38.127443955  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.128251872  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.128881515  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.128884359  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.129175586  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.129627433  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.129903106  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.130298385  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.130667985  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.131026273  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.131470708  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.135754866  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737226, current: 319666673; changing to 674737227. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.135842306  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737227, current: 319672672; changing to 674737228. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.136013787  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737228, current: 319678669; changing to 674737229. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.136018248  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737229, current: 319684669; changing to 674737230. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.136045127  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737230, current: 319690666; changing to 674737231. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141162567  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737231, current: 319696665; changing to 674737232. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141166613  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737232, current: 319702663; changing to 674737233. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141169158  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737233, current: 319708661; changing to 674737234. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141171699  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737234, current: 319714659; changing to 674737235. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141174195  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737235, current: 319720658; changing to 674737236. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141176304  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737236, current: 319726656; changing to 674737237. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141178707  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737237, current: 319732654; changing to 674737238. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141180992  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737238, current: 319738652; changing to 674737239. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141183372  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737239, current: 319744651; changing to 674737240. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141185737  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737240, current: 319750649; changing to 674737241. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141188102  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737241, current: 319756648; changing to 674737242. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141190520  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737242, current: 319762646; changing to 674737243. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141193554  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737243, current: 319768644; changing to 674737244. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141195929  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737244, current: 319774642; changing to 674737245. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141226593  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737245, current: 319780640; changing to 674737246. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141229128  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737246, current: 319786638; changing to 674737247. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141231532  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737247, current: 319792637; changing to 674737248. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141233749  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737248, current: 319798635; changing to 674737249. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.141317982  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737249, current: 319804633; changing to 674737250. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144966814  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737250, current: 319810631; changing to 674737251. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144971217  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737251, current: 319816630; changing to 674737252. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144973754  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737252, current: 319822628; changing to 674737253. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144976199  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737253, current: 319828627; changing to 674737254. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144978599  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737254, current: 319834625; changing to 674737255. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144980947  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737255, current: 319840623; changing to 674737256. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144983423  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737256, current: 319846622; changing to 674737257. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144985818  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737257, current: 319852619; changing to 674737258. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144988162  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737258, current: 319858617; changing to 674737259. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144990431  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737259, current: 319864616; changing to 674737260. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144992755  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737260, current: 319870614; changing to 674737261. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144995030  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737261, current: 319876613; changing to 674737262. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144997374  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737262, current: 319882611; changing to 674737263. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.144999635  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737263, current: 319888610; changing to 674737264. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145001893  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737264, current: 319894607; changing to 674737265. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145004241  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737265, current: 319900606; changing to 674737266. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145006445  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737266, current: 319906604; changing to 674737267. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145008661  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737267, current: 319912602; changing to 674737268. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145010944  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737268, current: 319918601; changing to 674737269. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145043901  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737269, current: 319924599; changing to 674737270. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145046342  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737270, current: 319930597; changing to 674737271. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145055414  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737271, current: 319936596; changing to 674737272. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145057855  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737272, current: 319942594; changing to 674737273. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145060076  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737273, current: 319948593; changing to 674737274. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145062234  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737274, current: 319954590; changing to 674737275. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145089280  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737275, current: 319960589; changing to 674737276. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145091603  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737276, current: 319966587; changing to 674737277. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145093755  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737277, current: 319972586; changing to 674737278. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145095925  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737278, current: 319978584; changing to 674737279. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145120689  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737279, current: 319984582; changing to 674737280. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145122949  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737280, current: 319990580; changing to 674737281. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145125084  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737281, current: 319996579; changing to 674737282. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145154116  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737282, current: 320002576; changing to 674737283. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145156463  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737283, current: 320008575; changing to 674737284. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145158625  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737284, current: 320014574; changing to 674737285. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145160758  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737285, current: 320020572; changing to 674737286. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145162932  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737286, current: 320026570; changing to 674737287. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145165065  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737287, current: 320032568; changing to 674737288. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145167259  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737288, current: 320038566; changing to 674737289. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145169412  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737289, current: 320044564; changing to 674737290. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145171544  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737290, current: 320050563; changing to 674737291. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145173662  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737291, current: 320056562; changing to 674737292. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145175784  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737292, current: 320062560; changing to 674737293. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145177913  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737293, current: 320068558; changing to 674737294. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145179977  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737294, current: 320074556; changing to 674737295. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145182113  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737295, current: 320080555; changing to 674737296. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145184140  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737296, current: 320086553; changing to 674737297. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145186281  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737297, current: 320092552; changing to 674737298. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145188350  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737298, current: 320098549; changing to 674737299. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145190479  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737299, current: 320104548; changing to 674737300. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145192558  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737300, current: 320110545; changing to 674737301. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145194731  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737301, current: 320116544; changing to 674737302. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145196889  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737302, current: 320122543; changing to 674737303. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145199008  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737303, current: 320128542; changing to 674737304. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145200866  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737304, current: 320134539; changing to 674737305. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145203002  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737305, current: 320140537; changing to 674737306. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145205151  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737306, current: 320146536; changing to 674737307. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145207182  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737307, current: 320152534; changing to 674737308. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145209302  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737308, current: 320158533; changing to 674737309. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145211426  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737309, current: 320164531; changing to 674737310. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145213574  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737310, current: 320170529; changing to 674737311. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145215705  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737311, current: 320176527; changing to 674737312. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145217819  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737312, current: 320182525; changing to 674737313. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.145219943  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737313, current: 320188524; changing to 674737314. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.147992265  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737314, current: 320194522; changing to 674737315. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.148396131  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737315, current: 320200520; changing to 674737316. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.148667127  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737316, current: 320206519; changing to 674737317. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.148866084  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737317, current: 320212517; changing to 674737318. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.150636228  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737318, current: 320218515; changing to 674737319. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.151037770  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737319, current: 320224515; changing to 674737320. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.151739698  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737320, current: 320230512; changing to 674737321. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.151833038  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737321, current: 320236510; changing to 674737322. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.152027612  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [rtsp @ 0x558e080a8f00] RTP: PT=60: bad cseq 34d5 expected=7401
2023-04-26 01:14:38.152202465  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [rtsp @ 0x558e080a8f00] RTP: PT=61: bad cseq 768f expected=185b
2023-04-26 01:14:38.152291748  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : [segment @ 0x558e080ced80] Non-monotonous DTS in output stream 0:0; previous: 674737322, current: 320242510; changing to 674737323. This may result in incorrect timestamps in the output file.
2023-04-26 01:14:38.152439299  [2023-04-26 01:14:38] ffmpeg.driveway.record         ERROR   : rtsp://127.0.0.1:8554/driveway: Connection timed out
2023-04-26 01:14:38.152563743  [2023-04-26 01:14:38] watchdog.driveway              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:14:38.152759586  [2023-04-26 01:14:38] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:38.152890955  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.152962853  [2023-04-26 01:14:38] frigate.video                  ERROR   : driveway: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:14:38.190663187  [2023-04-26 01:14:38] watchdog.frontyard             INFO    : FFmpeg did not exit. Force killing...
2023-04-26 01:14:38.489258635  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.489712667  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.489842463  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.490034011  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.490311845  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.490558035  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.490814848  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.491197826  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.491447248  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.491686131  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.491923330  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.492172652  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.492412649  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.492681030  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.493015549  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.493255778  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: Unable to read frames from ffmpeg process.
2023-04-26 01:14:38.493377272  [2023-04-26 01:14:38] frigate.video                  ERROR   : frontyard: ffmpeg process is not running. exiting capture thread...
2023-04-26 01:14:48.152001314  [2023-04-26 01:14:48] watchdog.driveway              ERROR   : Ffmpeg process crashed unexpectedly for driveway.
2023-04-26 01:14:48.152005554  [2023-04-26 01:14:48] watchdog.driveway              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:14:48.152007661  [2023-04-26 01:14:48] ffmpeg.driveway.detect         ERROR   : [rtsp @ 0x55e9b40b2e40] RTP: PT=60: bad cseq 5015 expected=a5f1
2023-04-26 01:14:48.152009569  [2023-04-26 01:14:48] ffmpeg.driveway.detect         ERROR   : [rtsp @ 0x55e9b40b2e40] RTP: PT=61: bad cseq d328 expected=802d
2023-04-26 01:14:48.152011504  [2023-04-26 01:14:48] ffmpeg.driveway.detect         ERROR   : [out_0_0 @ 0x55e9b41e1080] 100 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:14:48.152013435  [2023-04-26 01:14:48] ffmpeg.driveway.detect         ERROR   : [out_0_0 @ 0x55e9b41e1080] 1000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:14:48.160458427  [2023-04-26 01:14:48] ffmpeg.driveway.record         ERROR   : rtsp://127.0.0.1:8554/driveway: Invalid data found when processing input
2023-04-26 01:14:48.160462161  [2023-04-26 01:14:48] watchdog.driveway              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:14:48.160463967  [2023-04-26 01:14:48] watchdog.driveway              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:14:48.494792755  [2023-04-26 01:14:48] watchdog.frontyard             ERROR   : Ffmpeg process crashed unexpectedly for frontyard.
2023-04-26 01:14:48.494796309  [2023-04-26 01:14:48] watchdog.frontyard             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-04-26 01:14:48.494798120  [2023-04-26 01:14:48] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x55af6d165e40] RTP: PT=61: bad cseq 2efa expected=4f5a
2023-04-26 01:14:48.494799863  [2023-04-26 01:14:48] ffmpeg.frontyard.detect        ERROR   : [rtsp @ 0x55af6d165e40] RTP: PT=60: bad cseq a5e0 expected=f664
2023-04-26 01:14:48.494801661  [2023-04-26 01:14:48] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x55af6d2a2d00] 100 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:14:48.494803418  [2023-04-26 01:14:48] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x55af6d2a2d00] 1000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:14:48.494805121  [2023-04-26 01:14:48] ffmpeg.frontyard.detect        ERROR   : [out_0_0 @ 0x55af6d2a2d00] 10000 buffers queued in out_0_0, something may be wrong.
2023-04-26 01:17:07.661782292  [2023-04-26 01:17:07] watchdog.backdoor              ERROR   : No new recording segments were created for backdoor in the last 120s. restarting the ffmpeg record process...
2023-04-26 01:17:07.661786218  [2023-04-26 01:17:07] watchdog.backdoor              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:17:07.661788038  [2023-04-26 01:17:07] watchdog.backdoor              INFO    : Waiting for ffmpeg to exit gracefully...
2023-04-26 01:17:07.679676797  [2023-04-26 01:17:07] watchdog.backyard              ERROR   : No new recording segments were created for backyard in the last 120s. restarting the ffmpeg record process...
2023-04-26 01:17:07.679680577  [2023-04-26 01:17:07] watchdog.backyard              INFO    : Terminating the existing ffmpeg process...
2023-04-26 01:17:07.679682395  [2023-04-26 01:17:07] watchdog.backyard              INFO    : Waiting for ffmpeg to exit gracefully...

here is a snippet from the logs

NickM-27 commented 1 year ago

looks like the camera just can't keep a good connection. Keeps sending bad data or having the stream stall. Does it work better if you point frigate cameras section directly at the camera?

frankfurts88 commented 1 year ago

I will try that again as that was how I had it setup on 0.11, I'm currently ping testing one of the cameras to see if it times out so far 500/500 packets and only crept over 1ms like 3 times. pinging from the frigate host lxc on my proxmox machine

NickM-27 commented 1 year ago

Pings are very lightweight compared to video packets, so that's not a relevant test unless the entire network is dropping the camera

frankfurts88 commented 1 year ago

Yeah I just thought I'd run it as in my go2rtc logs it looks like I'm having a time out to all 4 cameras at the same time.

--- 192.168.0.187 ping statistics --- 2008 packets transmitted, 2008 received, 0% packet loss, time 2053100ms rtt min/avg/max/mdev = 0.178/0.397/3.070/0.232 ms

I'll try again without go2rtc and see if I can get the reolink http streams to work.

Thanks

frankfurts88 commented 1 year ago

So to check things a little further I turned recording back on with my QNAP NAS and inspected the logs there and I am getting "Stream 2 of Camera 4 no data for over 10 seconds" "Stream 2 of Camera 1 no data for over 10 seconds"

Camera 1 and 4 are my Reo link cameras 2 and 3 are my Vigi cameras which show no issues on the NAS but do on frigate.

So I'd say you are right that they are connectivity issues I'm facing still though this message confuses me

"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"

how do I set the timestamps?

I really appreciate you helping me out. I'm going to try and get my http streams working for the reo link cameras and have a look in my router to see if I can put them on a different VLan and give them traffic priority.

NickM-27 commented 1 year ago

When it says timestamps it means pts and dts, this comes from your camera and is a sign that your camera is not sending data correctly.

frankfurts88 commented 1 year ago

Alright I finally got the http streams to work and I'm no longer getting disconnects on my reolink cameras (had a special char in password causing it grief)

facing issues with my tp link vigi cameras dropping out as well but it appears there may be a fix that might work in the next go2rtc release.

groenmarsmannetje commented 1 year ago

“ it appears there may be a fix that might work in the next go2rtc release.”

what was your source? I only have these camera’s and for me the upgrade to version 0.12 is totally unstable. It works for a couple of minutes and then it starts failing and never seems able to recover itself unless you do a restart.

frankfurts88 commented 1 year ago

There was an issue somewhere on the go2rtc GitHub from memory it was a tp link tapo camera but an identical issue. I'm not sure if this was happening on the old version of frigate and I just didn't know because the log wasn't as easy to access so I didn't check it.

github-actions[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

frankfurts88 commented 1 year ago

For me it was an issue with my password it didn't like having a special character in it for the http stream for some reason. Changed the password and it was all good.

AddoSolutions commented 1 year ago

Having this issue as well. Bosch Security camera, watching for updates

JettScythe commented 11 months ago

Having this issue as well. Running frigate in HAOS. I have 4 cameras connected to a Swann DVR4-4580V. I have Frigate connect to the 8 rtsp streams. Using the sub stream for detection and the main for recording.

mathgim commented 8 months ago

I am not sure to understand this feed. Is there a Frigate update which will solve the issue or shall I do something within my configuration file?