Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Config Support]: 0.13 beta 3 errors #8425

Closed
thetravellor opened this issue Nov 2, 2023 · 7 comments
Closed

[Config Support]: 0.13 beta 3 errors #8425

thetravellor opened this issue Nov 2, 2023 · 7 comments
Labels
beta Related to the current beta version of frigate stale support triage

Comments

@thetravellor
Copy link

thetravellor commented Nov 2, 2023

Describe the problem you are having

I have been running Frigate OK on Version 0.12 for some months, and am running on a dedicated Raspberry Pi 4b with 8GB RAM, and have a USB Coral Edge TPU installed. I am running using docker compose.
Homeassistant recently required me to upgrade frigate for the integration to run.
Now I have moved to 0.13 Beta 3 and have issues. I have changed nothing in the config other than the image path on docker-compose.yml
Issue #1 About 30% of the cameras in the "cameras" multicamera view show "no frames are detected. When I select a camera, even though it has this state it will show me a MSE stream on the next page.
Screenshot 2023-11-02 at 5 49 30 pm
Issue #2 On the system tab, vainfo does not work (well it didn't in 0.12 either to be honest
Issue 3 on the system tab, ffprobe does not work, it just gives an error

Version

0.13.0-CD64399

Frigate config file

# yaml-language-server: $schema=http://192.168.2.232:5000/api/config/schema
mqtt:
  host: 192.168.0.4
  port: 1883
  topic_prefix: frigate
  client_id: frigate
  user: zigbee2mqtt
  password: password
detectors:
  coral:
    type: edgetpu
    device: usb
record:
  # Optional: Enable recording (default: shown below)
  # WARNING: If recording is disabled in the config, turning it on via 
  #          the UI or MQTT later will have no effect.
  # WARNING: Frigate does not currently support limiting recordings based
  #          on available disk space automatically. If using recordings,
  #          you must specify retention settings for a number of days that
  #          will fit within the available disk space of your drive or Frigate
  #          will crash.
  enabled: true
  # Optional: Number of minutes to wait between cleanup runs (default: shown below)
  # This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o
  expire_interval: 60
  # Optional: Retention settings for recording
  retain:
    # Optional: Number of days to retain recordings regardless of events (default: shown below)
    # NOTE: This should be set to 0 and retention should be defined in events section below
    #       if you only want to retain recordings of events.
    days: 0
    # Optional: Mode for retention. Available options are: all, motion, and active_objects
    #   all - save all recording segments regardless of activity
    #   motion - save all recordings segments with any detected motion
    #   active_objects - save all recording segments with active/moving objects
    # NOTE: this mode only applies when the days setting above is greater than 0
    mode: all
# Optional: Configuration for the jpg snapshots written to the clips directory for each event
# NOTE: Can be overridden at the camera level
snapshots:
  # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
  # This value can be set via MQTT and will be updated in startup based on retained value
  enabled: true
  # Optional: print a timestamp on the snapshots (default: shown below)
  timestamp: true
  # Optional: draw bounding box on the snapshots (default: shown below)
  bounding_box: true
  # Optional: crop the snapshot (default: shown below)
  crop: true
  # Optional: height to resize the snapshot to (default: original size)
  # height: 175
  # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
  # required_zones: []
  # Optional: Camera override for retention settings (default: global values)
  retain:
    # Required: Default retention days (default: shown below)
    default: 2
    # Optional: Per object retention days
    objects:
      person: 2
      dog: 2
live:
  # Optional: Set the height of the live stream. (default: 720)
  # This must be less than or equal to the height of the detect stream. Lower resolutions
  # reduce bandwidth required for viewing the live stream. Width is computed to match known aspect ratio.
  height: 720
  # Optional: Set the encode quality of the live stream (default: shown below)
  # 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
  quality: 1

# Optional: in-feed timestamp style configuration
# NOTE: Can be overridden at the camera level
#timestamp_style:
#  # Optional: Position of the timestamp (default: shown below)
#  #           "tl" (top left), "tr" (top right), "bl" (bottom left), "br" (bottom right)
#  position: "tl"
#  # Optional: Format specifier conform to the Python package "datetime" (default: shown below)
#  #           Additional Examples:
#  #             german: "%d.%m.%Y %H:%M:%S"
#  format: "%d/%m/%Y %H:%M:%S"
#  # Optional: Color of font
#  color:
#    # All Required when color is specified (default: shown below)
#    red: 255
#    green: 255
#    blue: 255
#  # Optional: Line thickness of font (default: shown below)
#  thickness: 2
#  # Optional: Effect of lettering (default: shown below)
#  #      t    None (No effect),
#  #           "solid" (solid background in inverse color of font)
#  #           "shadow" (shadow for font)
#  #effect: "solid"
cameras:
  door:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=6&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=6&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
  front:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=8&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=8&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
  driveway:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=2&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=2&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
    objects:
      track:
        - person
        - dog
        - cat
        - car
    zones:
      garageentrance:
        coordinates: 506,576,161,576,122,253,269,232,392,214,590,437
      parking:
        coordinates: 272,21,379,0,494,60,517,90,497,121,433,109,402,107,353,99,262,97
  dogs:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
    objects:
      track:
        - person
        - dog
        - cat
  backyard_left:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=3&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=3&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
  backyard_right:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      #input_args:
      #  - -c:v
      #  - h264_cuvid    
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=4&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=4&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
#  laundry:
#    ffmpeg:
#      hwaccel_args: preset-rpi-64-h264
#      inputs:
#      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=7&subtype=0
#        input_args: preset-rtsp-generic
#        roles:
#          - record
#      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=7&subtype=1
#        input_args: preset-rtsp-generic
#        roles: 
#          - detect
#    detect:
#      width: 704
#      height: 576
  alfresco:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=5&subtype=0
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://admin:[email protected]:554/cam/realmonitor?channel=5&subtype=1
        input_args: preset-rtsp-generic
        roles: 
          - detect
    detect:
      width: 704
      height: 576
  corridor:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      inputs:
      - path: rtsp://frigate:[email protected]:554/live
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://frigate:[email protected]:554/cam/realmonitor?channel=1&subtype=1
        input_args: preset-rtsp-generic
        roles:
          - detect
          - rtmp
      output_args:
        rtmp: -vf setdar=16/9 -f flv
    rtmp:
      enabled: True
    detect:
      width: 704
      height: 576
    objects:
      track:
        - person
  garage:
    ffmpeg:
      hwaccel_args: preset-rpi-64-h264
      #input_args:
      #  - -c:v
      #  - h264_cuvid
      inputs:
      - path: rtsp://frigate:[email protected]:554/live
        input_args: preset-rtsp-generic
        roles:
          - record
      - path: rtsp://frigate:[email protected]:554/cam/realmonitor?channel=1&subtype=1
        input_args: preset-rtsp-generic
        roles:
          - detect
    detect:
      width: 704
      height: 576
    objects:
      track:
        - person
go2rtc:
  streams:
    front:
      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=8&subtype=0
    alfresco:
      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=5&subtype=0
    driveway:
#      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=2&subtype=0
      - rtsp://admin:[email protected]:554/live
    door:
#      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=6&subtype=0
      - rtsp://admin:[email protected]:554/live
#    laundry:
#      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=7&subtype=0
    dogs:
      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
    backyard_left:
      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=3&subtype=0
    backyard_right:
      - rtsp://admin:[email protected]:554/cam/realmonitor?channel=4&subtype=0
    corridor:
      - rtsp://frigate:[email protected]:554/live
    garage:
      - rtsp://frigate:[email protected]:554/live

Relevant log output

2023-11-02 16:55:06.099315328  [2023-11-02 16:55:06] frigate.video                  ERROR   : driveway: Unable to read frames from ffmpeg process.
2023-11-02 16:55:06.100539026  [2023-11-02 16:55:06] frigate.video                  ERROR   : driveway: ffmpeg process is not running. exiting capture thread...
2023-11-02 16:55:06.132368550  [2023-11-02 16:55:06] frigate.video                  ERROR   : dogs: Unable to read frames from ffmpeg process.
2023-11-02 16:55:06.135964682  [2023-11-02 16:55:06] frigate.video                  ERROR   : dogs: ffmpeg process is not running. exiting capture thread...
2023-11-02 16:55:09.227091340  [2023-11-02 16:55:09] watchdog.driveway              ERROR   : Ffmpeg process crashed unexpectedly for driveway.
2023-11-02 16:55:09.236705563  [2023-11-02 16:55:09] watchdog.driveway              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 16:55:09.236723563  [2023-11-02 16:55:09] ffmpeg.driveway.detect         ERROR   : [swscaler @ 0x5588b298d0] deprecated pixel format used, make sure you did set range correctly
2023-11-02 16:55:09.278879241  [2023-11-02 16:55:09] watchdog.dogs                  ERROR   : Ffmpeg process crashed unexpectedly for dogs.
2023-11-02 16:55:09.278894093  [2023-11-02 16:55:09] watchdog.dogs                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 16:55:09.278898019  [2023-11-02 16:55:09] ffmpeg.dogs.detect             ERROR   : [swscaler @ 0x557b89e240] deprecated pixel format used, make sure you did set range correctly
2023-11-02 16:55:19.114758429  [2023-11-02 16:55:19] watchdog.door                  INFO    : No frames received from door in 20 seconds. Exiting ffmpeg...
2023-11-02 16:55:19.117490461  [2023-11-02 16:55:19] watchdog.door                  INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-02 16:55:20.609561531  [2023-11-02 16:55:20] frigate.video                  ERROR   : door: Unable to read frames from ffmpeg process.
2023-11-02 16:55:20.623332839  [2023-11-02 16:55:20] frigate.video                  ERROR   : door: Unable to read frames from ffmpeg process.
2023-11-02 16:55:20.623345265  [2023-11-02 16:55:20] frigate.video                  ERROR   : door: ffmpeg process is not running. exiting capture thread...
2023-11-02 16:55:30.626093221  [2023-11-02 16:55:30] watchdog.door                  ERROR   : Ffmpeg process crashed unexpectedly for door.
2023-11-02 16:55:30.626110757  [2023-11-02 16:55:30] watchdog.door                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 16:55:30.626114776  [2023-11-02 16:55:30] ffmpeg.door.detect             ERROR   : [swscaler @ 0x55ac808840] deprecated pixel format used, make sure you did set range correctly
2023-11-02 16:55:30.626118183  [2023-11-02 16:55:30] ffmpeg.door.detect             ERROR   : [h264 @ 0x55ac6a32a0] error while decoding MB 42 26, bytestream -7
2023-11-02 16:55:30.626206811  [2023-11-02 16:55:30] ffmpeg.door.detect             ERROR   : rtsp://*:*@192.168.0.50:554/cam/realmonitor?channel=6&subtype=1: corrupt decoded frame in stream 0
2023-11-02 17:07:29.337283269  [2023-11-02 17:07:29] watchdog.front                 INFO    : No frames received from front in 20 seconds. Exiting ffmpeg...
2023-11-02 17:07:29.338057485  [2023-11-02 17:07:29] watchdog.front                 INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-02 17:07:39.571187796  [2023-11-02 17:07:39] watchdog.backyard_left         INFO    : No frames received from backyard_left in 20 seconds. Exiting ffmpeg...
2023-11-02 17:07:39.572127900  [2023-11-02 17:07:39] watchdog.backyard_left         INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-02 17:07:40.912714082  [2023-11-02 17:07:40] watchdog.door                  INFO    : No frames received from door in 20 seconds. Exiting ffmpeg...
2023-11-02 17:07:40.918221598  [2023-11-02 17:07:40] watchdog.door                  INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-02 17:07:45.907164894  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.910925570  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.915612536  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.922714873  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.923087166  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.923530163  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.923873660  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.924249380  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: Unable to read frames from ffmpeg process.
2023-11-02 17:07:45.925173021  [2023-11-02 17:07:45] frigate.video                  ERROR   : front: ffmpeg process is not running. exiting capture thread...
2023-11-02 17:07:46.464960734  [2023-11-02 17:07:46] frigate.video                  ERROR   : door: Unable to read frames from ffmpeg process.
2023-11-02 17:07:46.465324602  [2023-11-02 17:07:46] frigate.video                  ERROR   : door: ffmpeg process is not running. exiting capture thread...
2023-11-02 17:07:55.144045546  [2023-11-02 17:07:55] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for backyard_left. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:07:55.145338259  [2023-11-02 17:07:55] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for door. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:07:55.925528195  [2023-11-02 17:07:55] watchdog.front                 ERROR   : Ffmpeg process crashed unexpectedly for front.
2023-11-02 17:07:55.926300190  [2023-11-02 17:07:55] watchdog.front                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 17:07:55.926677057  [2023-11-02 17:07:55] ffmpeg.front.detect            ERROR   : [swscaler @ 0x558c617570] deprecated pixel format used, make sure you did set range correctly
2023-11-02 17:07:55.926967166  [2023-11-02 17:07:55] ffmpeg.front.detect            ERROR   : [h264 @ 0x558c4ea630] error while decoding MB 8 4, bytestream -5
2023-11-02 17:07:55.927293294  [2023-11-02 17:07:55] ffmpeg.front.detect            ERROR   : rtsp://*:*@192.168.0.50:554/cam/realmonitor?channel=8&subtype=1: corrupt decoded frame in stream 0
2023-11-02 17:07:55.927671365  [2023-11-02 17:07:55] ffmpeg.front.detect            ERROR   : [h264 @ 0x558c4ed9b0] Increasing reorder buffer to 1
2023-11-02 17:07:55.927966048  [2023-11-02 17:07:55] ffmpeg.front.detect            ERROR   : [h264 @ 0x558c4ed9b0] error while decoding MB 32 12, bytestream -5
2023-11-02 17:07:56.468229851  [2023-11-02 17:07:56] watchdog.door                  ERROR   : Ffmpeg process crashed unexpectedly for door.
2023-11-02 17:07:56.468758551  [2023-11-02 17:07:56] watchdog.door                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 17:07:56.469103752  [2023-11-02 17:07:56] ffmpeg.door.detect             ERROR   : [swscaler @ 0x5594827ad0] deprecated pixel format used, make sure you did set range correctly
2023-11-02 17:07:56.469534545  [2023-11-02 17:07:56] ffmpeg.door.detect             ERROR   : [h264 @ 0x5594734d20] error while decoding MB 0 18, bytestream -7
2023-11-02 17:07:56.469891820  [2023-11-02 17:07:56] ffmpeg.door.detect             ERROR   : rtsp://*:*@192.168.0.50:554/cam/realmonitor?channel=6&subtype=1: corrupt decoded frame in stream 0
2023-11-02 17:07:56.470503631  [2023-11-02 17:07:56] ffmpeg.door.detect             ERROR   : [h264 @ 0x55948835c0] Increasing reorder buffer to 2
2023-11-02 17:08:06.065001513  [2023-11-02 17:08:06] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for backyard_left. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:08:06.078842026  [2023-11-02 17:08:06] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for door. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:08:06.124564643  [2023-11-02 17:08:06] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for front. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:08:09.588787016  [2023-11-02 17:08:09] watchdog.backyard_left         INFO    : FFmpeg did not exit. Force killing...
2023-11-02 17:08:09.720068820  [2023-11-02 17:08:09] frigate.video                  ERROR   : backyard_left: Unable to read frames from ffmpeg process.
2023-11-02 17:08:09.727152158  [2023-11-02 17:08:09] frigate.video                  ERROR   : backyard_left: Unable to read frames from ffmpeg process.
2023-11-02 17:08:09.727164825  [2023-11-02 17:08:09] frigate.video                  ERROR   : backyard_left: ffmpeg process is not running. exiting capture thread...
2023-11-02 17:08:11.985598281  [2023-11-02 17:08:11] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for front. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:08:16.922483103  [2023-11-02 17:08:16] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for backyard_left. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:08:19.753113179  [2023-11-02 17:08:19] watchdog.backyard_left         ERROR   : Ffmpeg process crashed unexpectedly for backyard_left.
2023-11-02 17:08:19.753126364  [2023-11-02 17:08:19] watchdog.backyard_left         ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-02 17:08:19.753130364  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : [swscaler @ 0x55b05115c0] deprecated pixel format used, make sure you did set range correctly
2023-11-02 17:08:19.753133809  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : [h264 @ 0x55b03bc5c0] error while decoding MB 12 26, bytestream -5
2023-11-02 17:08:19.753136808  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : [h264 @ 0x55b03b32a0] Increasing reorder buffer to 1
2023-11-02 17:08:19.753140401  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : rtsp://*:*@192.168.0.50:554/cam/realmonitor?channel=3&subtype=1: corrupt decoded frame in stream 0
2023-11-02 17:08:19.753253400  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : [h264 @ 0x55b03bc5c0] error while decoding MB 33 11, bytestream -25
2023-11-02 17:08:19.753259493  [2023-11-02 17:08:19] ffmpeg.backyard_left.detect    ERROR   : [rtsp @ 0x55b0399150] CSeq 29 expected, 0 received.
2023-11-02 17:08:27.365593450  [2023-11-02 17:08:27] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for backyard_left. Keeping the 5 most recent segments out of 6 and discarding the rest...
2023-11-02 17:09:29.821435889  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-02 17:09:29.822868990  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 0, current: 0; changing to 1. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.824526646  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 4294751, current: 4294751; changing to 4294752. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.828375157  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 15361682, current: 15361682; changing to 15361683. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.830142034  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 26428832, current: 26428832; changing to 26428833. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.835322258  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [rtsp @ 0x557a5ac180] CSeq 18 expected, 0 received.
2023-11-02 17:09:29.838119405  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 37498517, current: 37498517; changing to 37498518. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.839748617  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [rtsp @ 0x557a5ac180] RTP: PT=60: bad cseq 2c99 expected=1e2c
2023-11-02 17:09:29.840836980  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 48567013, current: 48567013; changing to 48567014. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.841767695  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 59630639, current: 59630639; changing to 59630640. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.842515487  [2023-11-02 17:09:29] ffmpeg.alfresco.record         ERROR   : [segment @ 0x557a5b09f0] Non-monotonous DTS in output stream 0:0; previous: 70700768, current: 70700768; changing to 70700769. This may result in incorrect timestamps in the output file.
2023-11-02 17:09:29.843605590  [2023-11-02 17:09:29] watchdog.alfresco              INFO    : Terminating the existing ffmpeg process...
2023-11-02 17:09:29.870223114  [2023-11-02 17:09:29] watchdog.alfresco              INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-02 17:13:29.755521770  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-11-02 17:13:29.756329853  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 0, current: 0; changing to 1. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.756819514  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 4326144, current: 4326144; changing to 4326145. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.757412044  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 15392851, current: 15392851; changing to 15392852. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.757843298  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 26454867, current: 26454867; changing to 26454868. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.759039209  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 37525413, current: 37525413; changing to 37525414. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.760524376  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 48594295, current: 48594295; changing to 48594296. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.760546950  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 59658271, current: 59658271; changing to 59658272. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.762930736  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 70730143, current: 70730143; changing to 70730144. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.769575656  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [rtsp @ 0x558ea9e180] RTP: PT=60: bad cseq 350f expected=26f2
2023-11-02 17:13:29.769592156  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 81781118, current: 81781118; changing to 81781119. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.769597452  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 82397624, current: 82397624; changing to 82397625. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.769602563  [2023-11-02 17:13:29] ffmpeg.dogs.record             ERROR   : [segment @ 0x558eaa29f0] Non-monotonous DTS in output stream 0:0; previous: 92864594, current: 92864594; changing to 92864595. This may result in incorrect timestamps in the output file.
2023-11-02 17:13:29.769605378  [2023-11-02 17:13:29] watchdog.dogs                  INFO    : Terminating the existing ffmpeg process...

Frigate stats

{"cameras":{"alfresco":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":387,"detection_enabled":1,"detection_fps":0.9,"ffmpeg_pid":404,"pid":349,"process_fps":1.6,"skipped_fps":3.4},"backyard_left":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":372,"detection_enabled":1,"detection_fps":0.6,"ffmpeg_pid":8605,"pid":344,"process_fps":2.8,"skipped_fps":2.3},"backyard_right":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":380,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":16992,"pid":347,"process_fps":0.9,"skipped_fps":4.1},"corridor":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":396,"detection_enabled":1,"detection_fps":0.8,"ffmpeg_pid":414,"pid":352,"process_fps":2.0,"skipped_fps":3.3},"dogs":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":365,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":770,"pid":342,"process_fps":0.5,"skipped_fps":4.6},"door":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":356,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":15712,"pid":339,"process_fps":1.0,"skipped_fps":4.1},"driveway":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":361,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":6997,"pid":341,"process_fps":0.3,"skipped_fps":4.9},"front":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":358,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":17570,"pid":340,"process_fps":0.2,"skipped_fps":4.9},"garage":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":405,"detection_enabled":1,"detection_fps":1.0,"ffmpeg_pid":423,"pid":354,"process_fps":0.4,"skipped_fps":4.8}},"cpu_usages":{"1":{"cmdline":"/package/admin/s6/command/s6-svscan -d4 -- /run/service","cpu":"0.0","cpu_average":"0","mem":"0.0"},"15":{"cmdline":"s6-supervise s6-linux-init-shutdownd","cpu":"0.0","cpu_average":"0","mem":"0.0"},"17":{"cmdline":"/package/admin/s6-linux-init/command/s6-linux-init-shutdownd -c /run/s6/basedir -g 3000 -C -B","cpu":"0.0","cpu_average":"0","mem":"0.0"},"24":{"cmdline":"s6-supervise s6rc-oneshot-runner","cpu":"0.0","cpu_average":"0","mem":"0.0"},"25":{"cmdline":"s6-supervise go2rtc-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"26":{"cmdline":"s6-supervise nginx-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"27":{"cmdline":"s6-supervise go2rtc","cpu":"0.0","cpu_average":"0","mem":"0.0"},"28":{"cmdline":"s6-supervise s6rc-fdholder","cpu":"0.0","cpu_average":"0","mem":"0.0"},"29":{"cmdline":"s6-supervise nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"30":{"cmdline":"s6-supervise frigate-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"31":{"cmdline":"s6-supervise go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.0"},"32":{"cmdline":"s6-supervise frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"41":{"cmdline":"/package/admin/s6-2.11.3.2/command/s6-fdholderd -1 -i data/rules","cpu":"0.0","cpu_average":"0","mem":"0.0"},"42":{"cmdline":"/package/admin/s6/command/s6-ipcserverd -1 -- /package/admin/s6/command/s6-ipcserver-access -v0 -E -l0 -i data/rules -- /package/admin/s6/command/s6-sudod -t 30000 -- /package/admin/s6-rc/command/s6-rc-oneshot-run -l ../.. --","cpu":"0.0","cpu_average":"0","mem":"0.0"},"80":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"81":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"82":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/go2rtc","cpu":"0.0","cpu_average":"0","mem":"0.0"},"89":{"cmdline":"/usr/local/go2rtc/bin/go2rtc -config=/dev/shm/go2rtc.yaml","cpu":"6.7","cpu_average":"5","mem":"0.3"},"107":{"cmdline":"bash ./run.user go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.0"},"108":{"cmdline":"python3 -u -m frigate","cpu":"48.1","cpu_average":"10","mem":"5.0"},"121":{"cmdline":"nginx: master process nginx","cpu":"0.0","cpu_average":"0","mem":"0.2"},"144":{"cmdline":"nginx: worker process","cpu":"2.2","cpu_average":"1","mem":"0.1"},"145":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"146":{"cmdline":"nginx: worker process","cpu":"0.3","cpu_average":"0","mem":"0.1"},"147":{"cmdline":"nginx: worker process","cpu":"0.3","cpu_average":"0","mem":"0.1"},"295":{"cmdline":"frigate.logger       ","cpu":"0.0","cpu_average":"0","mem":"1.3"},"297":{"cmdline":"frigate.recording_manager","cpu":"20.6","cpu_average":"20","mem":"1.8"},"306":{"cmdline":"/usr/bin/python3 -c from multiprocessing.resource_tracker import main;main(73)","cpu":"1.1","cpu_average":"1","mem":"0.1"},"307":{"cmdline":"frigate.detector.coral","cpu":"32.2","cpu_average":"36","mem":"1.7"},"308":{"cmdline":"frigate.output       ","cpu":"1.7","cpu_average":"1","mem":"1.5"},"312":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"315":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"317":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"318":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"319":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"320":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"321":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"322":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"323":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 704x576 -i pipe: -f mpegts -s 880x720 -codec:v mpeg1video -q 1 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"324":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.8"},"339":{"cmdline":"frigate.process:door ","cpu":"3.7","cpu_average":"3","mem":"1.8"},"340":{"cmdline":"frigate.process:front","cpu":"1.7","cpu_average":"3","mem":"2.1"},"341":{"cmdline":"frigate.process:driveway","cpu":"3.7","cpu_average":"3","mem":"1.8"},"342":{"cmdline":"frigate.process:dogs ","cpu":"3.4","cpu_average":"3","mem":"1.9"},"344":{"cmdline":"frigate.process:backyard_left","cpu":"2.8","cpu_average":"3","mem":"1.9"},"347":{"cmdline":"frigate.process:backyard_right","cpu":"3.4","cpu_average":"3","mem":"2.0"},"349":{"cmdline":"frigate.process:alfresco","cpu":"3.9","cpu_average":"3","mem":"2.1"},"352":{"cmdline":"frigate.process:corridor","cpu":"4.8","cpu_average":"4","mem":"1.8"},"354":{"cmdline":"frigate.process:garage","cpu":"2.3","cpu_average":"4","mem":"1.9"},"356":{"cmdline":"frigate.capture:door ","cpu":"2.8","cpu_average":"2","mem":"1.6"},"358":{"cmdline":"frigate.capture:front","cpu":"2.3","cpu_average":"2","mem":"1.6"},"361":{"cmdline":"frigate.capture:driveway","cpu":"2.8","cpu_average":"2","mem":"1.6"},"365":{"cmdline":"frigate.capture:dogs ","cpu":"2.8","cpu_average":"2","mem":"1.6"},"372":{"cmdline":"frigate.capture:backyard_left","cpu":"2.6","cpu_average":"2","mem":"1.6"},"380":{"cmdline":"frigate.capture:backyard_right","cpu":"2.5","cpu_average":"2","mem":"1.6"},"387":{"cmdline":"frigate.capture:alfresco","cpu":"3.1","cpu_average":"2","mem":"1.6"},"396":{"cmdline":"frigate.capture:corridor","cpu":"2.3","cpu_average":"2","mem":"1.6"},"404":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=5&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"12.0","cpu_average":"11","mem":"1.3"},"405":{"cmdline":"frigate.capture:garage","cpu":"2.6","cpu_average":"2","mem":"1.6"},"414":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://frigate:[email protected]:554/cam/realmonitor?channel=1&subtype=1 -vf setdar=16/9 -f flv rtmp://127.0.0.1/live/corridor -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"49.0","cpu_average":"57","mem":"0.7"},"423":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://frigate:[email protected]:554/cam/realmonitor?channel=1&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"16.3","cpu_average":"19","mem":"0.6"},"424":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://frigate:[email protected]:554/live -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/corridor-%Y%m%d%H%M%S.mp4","cpu":"3.4","cpu_average":"3","mem":"0.5"},"427":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://frigate:[email protected]:554/live -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/garage-%Y%m%d%H%M%S.mp4","cpu":"3.4","cpu_average":"3","mem":"0.5"},"770":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"10","mem":"1.0"},"6997":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=2&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"10.4","cpu_average":"10","mem":"1.4"},"8452":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=6&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/door-%Y%m%d%H%M%S.mp4","cpu":"3.5","cpu_average":"3","mem":"0.5"},"8467":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=4&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/backyard_right-%Y%m%d%H%M%S.mp4","cpu":"4.3","cpu_average":"3","mem":"0.5"},"8605":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=3&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"9.4","cpu_average":"10","mem":"1.3"},"10590":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=8&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/front-%Y%m%d%H%M%S.mp4","cpu":"3.4","cpu_average":"4","mem":"0.5"},"11712":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=2&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/driveway-%Y%m%d%H%M%S.mp4","cpu":"4.1","cpu_average":"4","mem":"0.5"},"13975":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=3&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/backyard_left-%Y%m%d%H%M%S.mp4","cpu":"3.8","cpu_average":"3","mem":"0.5"},"15712":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=6&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"10","mem":"1.0"},"16264":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/dogs-%Y%m%d%H%M%S.mp4","cpu":"4.1","cpu_average":"3","mem":"0.5"},"16992":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=4&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"18.4","cpu_average":"18","mem":"1.3"},"17570":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=8&subtype=1 -r 5 -vf fps=5,scale=704:576 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"18.6","cpu_average":"17","mem":"0.9"},"18026":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -c:v:1 h264_v4l2m2m -user_agent FFmpeg Frigate/0.13.0-cd64399 -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 -i rtsp://admin:[email protected]:554/cam/realmonitor?channel=5&subtype=0 -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an /tmp/cache/alfresco-%Y%m%d%H%M%S.mp4","cpu":"3.8","cpu_average":"3","mem":"0.5"},"19713":{"cmdline":"sleep 30s","cpu":"0.0","cpu_average":"0","mem":"0.0"}},"detection_fps":8.3,"detectors":{"coral":{"detection_start":1698908705.26352,"inference_speed":132.96,"pid":307}},"gpu_usages":{"rpi-v4l2m2m":{"gpu":-1,"mem":-1}},"processes":{"go2rtc":{"pid":89},"logger":{"pid":295},"recording":{"pid":297}},"service":{"last_updated":1698908706,"latest_version":"0.12.1","storage":{"/dev/shm":{"free":231.7,"mount_type":"tmpfs","total":256.0,"used":24.3},"/media/frigate/clips":{"free":1591125.3,"mount_type":"ext4","total":1876684.2,"used":190156.4},"/media/frigate/recordings":{"free":1591125.3,"mount_type":"ext4","total":1876684.2,"used":190156.4},"/tmp/cache":{"free":880.9,"mount_type":"tmpfs","total":953.7,"used":72.7}},"temperatures":{},"uptime":4267,"version":"0.13.0-cd64399"}}

Operating system

Debian (Rasberry Pi OS 11)

Install method

Docker compose

Coral version

USB

Any other information that may be helpful

No response

@NickM-27 NickM-27 added the beta Related to the current beta version of frigate label Nov 2, 2023
@NickM-27
Copy link
Collaborator

NickM-27 commented Nov 2, 2023

You may want to try -c:v h264_v4l2m2m for hwaccel_args and see if that works better

vainfo does not apply to the rpi so that is expected. need more info about ffprobe

@thetravellor
Copy link
Author

thetravellor commented Nov 3, 2023

Like this?

  garage:
    ffmpeg:
#      hwaccel_args: preset-rpi-64-h264
      hwaccel_args: -c:v h264_v4l2m2m

Im afraid it made things worse

2023-11-04 10:05:05.887636107  [2023-11-04 10:05:05] frigate.video                  ERROR   : garage: Unable to read frames from ffmpeg process.
2023-11-04 10:05:05.889934487  [2023-11-04 10:05:05] frigate.video                  ERROR   : garage: Unable to read frames from ffmpeg process.
2023-11-04 10:05:05.892057944  [2023-11-04 10:05:05] frigate.video                  ERROR   : garage: Unable to read frames from ffmpeg process.
2023-11-04 10:05:05.892071425  [2023-11-04 10:05:05] frigate.video                  ERROR   : garage: ffmpeg process is not running. exiting capture thread...
2023-11-04 10:05:05.945402667  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.952964929  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.952977614  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 9559
2023-11-04 10:05:05.952983448  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.952996985  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.953000096  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.953064688  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 7111
2023-11-04 10:05:05.953072150  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.953180038  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.953184686  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.953187742  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 63
2023-11-04 10:05:05.953258759  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.953265518  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.953270778  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.954095935  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.954107323  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.955335494  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] Picture timing SEI payload too large
2023-11-04 10:05:05.956788718  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 311219
2023-11-04 10:05:05.957680689  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] Picture timing SEI payload too large
2023-11-04 10:05:05.958508549  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.959545000  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.960331694  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.977727082  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13488
2023-11-04 10:05:05.984375985  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.984393800  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.984396948  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.984400281  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13464
2023-11-04 10:05:05.984405577  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.984410374  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.984412966  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.984416040  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13524
2023-11-04 10:05:05.984421225  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.984425910  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.984428485  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.985239845  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13398
2023-11-04 10:05:05.988069201  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.988088701  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.988091775  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.988095034  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13581
2023-11-04 10:05:05.988100275  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.988776693  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:05.989136151  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:05.996237160  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13556
2023-11-04 10:05:05.997171927  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:05.997717883  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.003471242  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.004245566  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13508
2023-11-04 10:05:06.005420311  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.006244431  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.007290993  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.007967652  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13120
2023-11-04 10:05:06.009031769  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.009666224  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.010538140  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.011076393  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13299
2023-11-04 10:05:06.011794051  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.012294897  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.013055629  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.015308343  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13530
2023-11-04 10:05:06.015322917  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.015327880  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.015330768  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.015565803  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13730
2023-11-04 10:05:06.016441311  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.016899843  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.017637649  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.018043885  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 14121
2023-11-04 10:05:06.018713951  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.020989998  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.021002887  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.021006609  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13498
2023-11-04 10:05:06.021012183  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.021017016  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.021019572  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.021289569  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13750
2023-11-04 10:05:06.022233687  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.022515406  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.023232064  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.023803391  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 14026
2023-11-04 10:05:06.024626677  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.025840885  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.025854459  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.026052772  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13918
2023-11-04 10:05:06.027075000  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.027655345  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.029724469  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.029753173  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13838
2023-11-04 10:05:06.030227982  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.030999547  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.031611799  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.032361994  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] missing picture in access unit with size 13572
2023-11-04 10:05:06.033243039  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] data partitioning is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
2023-11-04 10:05:06.033898494  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
2023-11-04 10:05:06.034709929  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [h264 @ 0x5585ae1310] no frame!
2023-11-04 10:05:06.036607629  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [rtsp @ 0x5585ade180] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2023-11-04 10:05:06.036622925  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2023-11-04 10:05:06.036625851  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : Guessed Channel Layout for Input Stream #0.1 : mono
2023-11-04 10:05:06.036628647  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : [segment @ 0x5585ae3e10] dimensions not set
2023-11-04 10:05:06.036632036  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
2023-11-04 10:05:06.037374249  [2023-11-04 10:05:05] ffmpeg.garage.record           ERROR   : 
2023-11-04 10:05:06.037970298  [2023-11-04 10:05:05] watchdog.garage                INFO    : Terminating the existing ffmpeg process...
2023-11-04 10:05:06.038733863  [2023-11-04 10:05:05] watchdog.garage                INFO    : Waiting for ffmpeg to exit gracefully...
2023-11-04 10:05:16.073129539  [2023-11-04 10:05:16] watchdog.garage                ERROR   : Ffmpeg process crashed unexpectedly for garage.
2023-11-04 10:05:16.084359573  [2023-11-04 10:05:16] watchdog.garage                ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-11-04 10:05:16.104956423  [2023-11-04 10:05:16] ffmpeg.garage.detect           ERROR   : [NULL @ 0x55b55b42c0] missing picture in access unit with size 1814
2023-11-04 10:05:16.104972867  [2023-11-04 10:05:16] ffmpeg.garage.detect           ERROR   : [NULL @ 0x55b55b42c0] missing picture in access unit with size 1829
2023-11-04 10:05:16.104976460  [2023-11-04 10:05:16] ffmpeg.garage.detect           ERROR   : [NULL @ 0x55b55b42c0] missing picture in access unit with size 1948
2023-11-04 10:05:16.104979886  [2023-11-04 10:05:16] ffmpeg.garage.detect           ERROR   : [NULL @ 0x55b55b42c0] missing picture in access unit with size 2080

@thetravellor
Copy link
Author

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

Screenshot 2023-11-04 at 10 07 58 am Screenshot 2023-11-04 at 10 08 13 am

@NickM-27
Copy link
Collaborator

NickM-27 commented Nov 4, 2023

looks like all the streams are running correctly now. Not sure why the cameras are not liking the ffprobe request

@thetravellor
Copy link
Author

thetravellor commented Nov 6, 2023

Thanks for your help NickM-27, I have downgraded beta 0.13 beta -> 0.12 stable, and similarly downgraded the integration from 5 beta - > 4.0.

The beta was too unstable, cameras randomly appear or disappeared from the cameras window, sometimes with communication errors, sometimes without.

I would be happy to work with you to debug the problem, but since we have no idea why I have the issue, ill wait it out until the next stable release.

I can confirm that I have no issue with Frigate 0.12 and Integration 4.0 under HA 11.1.

@NickM-27
Copy link
Collaborator

NickM-27 commented Nov 6, 2023

The logs you posted weren't there when I made my comment, this information is crucial to making suggestions. ffmpeg has not changed at all between 0.12 and 0.13, the only thing for the rpi that changed was the hwaccel args

Copy link

github-actions bot commented Dec 7, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
beta Related to the current beta version of frigate stale support triage
Projects
None yet
Development

No branches or pull requests

2 participants