[Support]: tiny snapshot clips recorded. #11234
Answered
by
NickM-27
janusn
asked this question in
General Support
-
Describe the problem you are havingI have setup a Nest Hello Video Doorbell to frigate via HASS Google Nest integration as a rtsp stream. The snapshots captured is way too small. please see the example below. The source stream is much bigger and the clean png below illustrates this. Version0.13.2-6476F8A Frigate config file# database
# ========================================================================================
database:
path: /config/frigate.db
# mqtt
# ========================================================================================
mqtt:
# Optional: Enable mqtt server (default: shown below)
enabled: True
# Required: host name
host: ***redacted for security***
# Optional: port (default: shown below)
port: 1883
# Optional: topic prefix (default: shown below)
# NOTE: must be unique if you are running multiple instances
topic_prefix: frigate
# Optional: client id (default: shown below)
# NOTE: must be unique if you are running multiple instances
client_id: frigate
# Optional: user
# NOTE: MQTT user can be specified with an environment variables that must begin with 'FRIGATE_'.
# e.g. user: '{FRIGATE_MQTT_USER}'
user: ***redacted for security***
# Optional: password
# NOTE: MQTT password can be specified with an environment variables that must begin with 'FRIGATE_'.
# e.g. password: '{FRIGATE_MQTT_PASSWORD}'
password: ***redacted for security***
# Optional: tls_ca_certs for enabling TLS using self-signed certs (default: None)
# tls_ca_certs: /path/to/ca.crt
# Optional: tls_client_cert and tls_client key in order to use self-signed client
# certificates (default: None)
# NOTE: certificate must not be password-protected
# do not set user and password when using a client certificate
# tls_client_cert: /path/to/client.crt
# tls_client_key: /path/to/client.key
# Optional: tls_insecure (true/false) for enabling TLS verification of
# the server hostname in the server certificate (default: None)
# tls_insecure: false
# Optional: interval in seconds for publishing stats (default: 60)
stats_interval: 5
# detectors
# ========================================================================================
detectors:
# CPU Detector
# cpu1:
# type: cpu
# num_threads: 3 # default 3
# model:
# path: "/cpu_model.tflite" #default ""/cpu_model.tflite"
# Google Coral Detector
coral:
type: edgetpu
device: usb
# OpenVINO Detector available to Intel CPU 6th Generation CPU (Skylake) or later with a GPU
# ov:
# type: openvino
# device: GPU
# model:
# path: /openvino-model/ssdlite_mobilenet_v2.xml
# for OpenVino Detectors only
#model:
# width: 300
# height: 300
# input_tensor: nhwc
# input_pixel_format: bgr
# labelmap_path: /openvino-model/coco_91cl_bkgr.txt
# for OpenVino Detectors only
# birdseye
# ========================================================================================
# Include all cameras by default in Birdseye view
birdseye:
# Optional: Enable birdseye view (default: True)
enabled: False
# Optional: Restream birdseye via RTSP (default: False)
# NOTE: Enabling this will set birdseye to run 24/7 which may increase CPU usage somewhat.
restream: False
# Optional: Width of the output resolution (default: 1280)
# width: 1280
# Optional: Height of the output resolution (default: 720)
# height: 720
# Optional: Encoding quality of the mpeg1 feed (default: 8)
# 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
# quality: 8
# Optional: Mode of the view. Available options are: objects, motion, and continuous
# objects - cameras are included if they have had a tracked object within the last 30 seconds
# motion - cameras are included if motion was detected in the last 30 seconds
# continuous - all cameras are included always
mode: continuous
# ffmpeg
# ========================================================================================
ffmpeg:
# generic Intel hardware acceleration
hwaccel_args: preset-vaapi
# Intel quick sync for gen 10 GPU (Ice Lake/Jasper Lake) h.264
# hwaccel_args: preset-intel-qsv-h264
# Intel quick sync for gen 10 GPU (Ice Lake/Jasper Lake) h.265
# hwaccel_args: preset-intel-qsv-h265
output_args:
record: preset-record-generic-audio-aac
# objects
# ========================================================================================
objects:
# Optional: list of objects to track from labelmap.txt (default: person)
track:
- person
- dog
- cat
- car
# record
# ========================================================================================
# Optional: Record configuration
# NOTE: Can be overridden at the camera level
record:
# Optional: Enable recording (default: false)
# WARNING: If recording is disabled in the config, turning it on via
# the UI or MQTT later will have no effect.
enabled: True
# Optional: Number of minutes to wait between cleanup runs (default: 60)
# 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: Sync recordings with disk on startup and once a day (default: False).
sync_recordings: False
# Optional: Retention settings for recording
retain: # <----- continuous recordings
# Optional: Number of days to retain recordings regardless of events (default: 0)
# 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: 7
# Optional: Mode for retention. Available options are: all, motion, and active_objects (default: all)
# 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: motion
# Optional: Recording Export Settings
export:
# Optional: Timelapse Output Args (default: "-vf setpts=0.04*PTS -r 30").
# NOTE: The default args are set to fit 24 hours of recording into 1 hour playback.
# See https://stackoverflow.com/a/58268695 for more info on how these args work.
# As an example: if you wanted to go from 24 hours to 30 minutes that would be going
# from 86400 seconds to 1800 seconds which would be 1800 / 86400 = 0.02.
# The -r (framerate) dictates how smooth the output video is.
# So the args would be -vf setpts=0.02*PTS -r 30 in that case.
timelapse_args: "-vf setpts=0.04*PTS -r 30"
# Optional: Event recording settings
events:
# Optional: Number of seconds before the event to include (default: 5)
pre_capture: 10
# Optional: Number of seconds after the event to include (default: 5)
post_capture: 5
# Optional: Objects to save recordings for. (default: all tracked objects)
# objects:
# - person
# Optional: Restrict recordings to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Retention settings for recordings of events
retain:
# Required: Default retention days (default: 10)
default: 14
# Optional: Mode for retention. (default: motion)
# all - save all recording segments for events regardless of activity
# motion - save all recordings segments for events with any detected motion
# active_objects - save all recording segments for event with active/moving objects
#
# NOTE: If the retain mode for the camera is more restrictive than the mode configured
# here, the segments will already be gone by the time this mode is applied.
# For example, if the camera retain mode is "motion", the segments without motion are
# never stored, so setting the mode to "all" here won't bring them back.
mode: motion
# Optional: Per object retention days
objects:
person: 60
# snapshots
# ========================================================================================
# 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: False)
enabled: True
# Optional: save a clean PNG copy of the snapshot image (default: True)
clean_copy: True
# Optional: print a timestamp on the snapshots (default: False)
timestamp: False
# Optional: draw bounding box on the snapshots (default: True)
bounding_box: True
# Optional: crop the snapshot (default: False)
crop: False
# Optional: height to resize the snapshot to (default: original size)
height: 175
# Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Camera override for retention settings (default: global values)
retain:
# Required: Default retention days (default: 10)
default: 30
# Optional: Per object retention days
objects:
person: 60
# go2rtc
# ========================================================================================
go2rtc:
api:
username: "***redacted for security***"
password: "***redacted for security***"
rtsp:
username: "***redacted for security***"
password: "***redacted for security***"
# extra parameters required for adding a timestamp to a stream. Please refer
# https://github.com/AlexxIT/go2rtc/issues/402#issuecomment-1606026909
ffmpeg:
vaapi_input: "-hwaccel vaapi -hwaccel_output_format nv12 -fflags nobuffer -flags low_delay -i {input}"
# qsv_input: "-hwaccel h264_qsv -hwaccel_output_format nv12 -fflags nobuffer -flags low_delay -i {input}"
vaapi_h264: "-c:v h264_vaapi -g 50 -bf 0 -profile:v high -level:v 4.1 -sei:v 0 -codec:a copy"
# qsv_h264: "-c:v h264_qsv -g 50 -bf 0 -profile:v high -level:v 4.1 -sei:v 0"
timestamp: >-
-vf "drawtext=text='%{localtime}':x=w/25:y=(h-th)-h/25:fontsize=h/25:fontcolor=white:shadowx=2:shadowy=2,format=vaapi|nv12,hwupload"
streams:
# stream backyard ====================================================================
backyard:
- rtsp://***redacted for security***@10.27.0.203:554/cam/realmonitor?channel=1&subtype=0
# - "ffmpeg:backyard#audio=opus" # required by WebRTC
backyard_sub:
- rtsp://***redacted for security***@10.27.0.203:554/cam/realmonitor?channel=1&subtype=2
# - "ffmpeg:backyard_sub#audio=opus" # required by WebRTC
# stream frontyard ===================================================================
frontyard:
- rtsp://***redacted for security***@10.27.0.202:554/cam/realmonitor?channel=1&subtype=0
# - "ffmpeg:frontyard#audio=opus" # required by WebRTC
frontyard_sub:
- rtsp://***redacted for security***@10.27.0.202:554/cam/realmonitor?channel=1&subtype=2
# - "ffmpeg:frontyard_sub#audio=opus" # required by WebRTC
# stream shed ========================================================================
shed:
- rtsp://***redacted for security***@10.27.0.206:554/cam/realmonitor?channel=1&subtype=0
# - "ffmpeg:shed#audio=opus" # required by WebRTC
shed_sub:
- rtsp://***redacted for security***@10.27.0.206:554/cam/realmonitor?channel=1&subtype=2
# - "ffmpeg:shed_sub#audio=opus" # required by WebRTC
# stream video doorbell ==============================================================
video_doorbell_raw:
# restreamed from HASS integration hass-expose-camera-stream-source. Please refer to
# https://github.com/felipecrs/hass-expose-camera-stream-source
- "echo:/config/get_ha_stream.sh camera.hello_video_doorbell"
video_doorbell:
# restream from doorbell_raw above with time stamp added. Please refer to
# https://github.com/AlexxIT/go2rtc/issues/402#issuecomment-1606026909
- "ffmpeg:rtsp://***redacted for security***@127.0.0.1:8554/video_doorbell_raw#input=vaapi_input#video=vaapi_h264#audio=copy#raw=timestamp"
# - "ffmpeg:doorbell#audio=opus" # required by WebRTC
# cameras
# ========================================================================================
cameras:
# Camera ========================== Backyard ===========================================
backyard: # <------ Name the camera
ffmpeg:
inputs:
- path: rtsp://***redacted for security***@127.0.0.1:8554/backyard_sub
input_args: preset-rtsp-restream-low-latency
roles:
- detect
- path: rtsp://***redacted for security***@127.0.0.1:8554/backyard
input_args: preset-rtsp-restream-low-latency
roles:
- record
live:
# stream_name: backyard_sub # prefer sub channel for live stream
stream_name: backyard # default main channel for live stream
detect:
enabled: True # <---- disable detection until you have a working camera feed
width: 1280 # <---- update for your camera's resolution
height: 720 # <---- update for your camera's resolution
motion:
mask:
- 1280,0,1280,304,1173,352,1100,324,1046,201,906,219,857,80,884,0
- 0,225,53,82,105,67,116,0,0,0
- 606,93,829,80,837,0,159,0,162,135
objects:
track:
- person
- dog
- cat
# Optional: filters to reduce false positives for specific object types
filters:
person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)
min_area: 3000
birdseye:
enable: object
# Optional: Configuration for the jpg snapshots published via MQTT
mqtt:
# Optional: Enable publishing snapshot via mqtt for camera (default: shown below)
# NOTE: Only applies to publishing image data to MQTT via 'frigate/<camera_name>/<object_name>/snapshot'.
# All other messages will still be published.
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: shown below)
height: 270
# Optional: jpeg encode quality (default: shown below)
quality: 70
# Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 1
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: True
# Camera ========================== Frontyard ==========================================
frontyard: # <------ Name the camera
ffmpeg:
inputs:
- path: rtsp://***redacted for security***@127.0.0.1:8554/frontyard_sub
input_args: preset-rtsp-restream-low-latency
roles:
- detect
- path: rtsp://***redacted for security***@127.0.0.1:8554/frontyard
input_args: preset-rtsp-restream-low-latency
roles:
- record
live:
# stream_name: frontyard_sub # prefer sub channel for live stream
stream_name: frontyard # default channel for live stream
detect:
enabled: True # <---- disable detection until you have a working camera feed
width: 1280 # <---- update for your camera's resolution
height: 720 # <---- update for your camera's resolution
motion:
mask:
- 0,0,407,0,371,211,0,395
- 1040,0,1280,0,1280,720,1092,720,1226,561,1280,299,1250,62,1040,66
objects:
track:
- person
- dog
- cat
- car
filters:
person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)
max_area: 120000
mask:
- 0,372,0,461,121,399,136,353,319,280,363,315,413,289,390,247,320,239
cat:
max_area: 22000
birdseye:
enable: object
# Optional: Configuration for the jpg snapshots published via MQTT
mqtt:
# Optional: Enable publishing snapshot via mqtt for camera (default: shown below)
# NOTE: Only applies to publishing image data to MQTT via 'frigate/<camera_name>/<object_name>/snapshot'.
# All other messages will still be published.
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: shown below)
height: 270
# Optional: jpeg encode quality (default: shown below)
quality: 70
# Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 0
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: True
# Camera ========================== Shed ===============================================
shed: # <------ Name the camera
ffmpeg:
inputs:
- path: rtsp://***redacted for security***@127.0.0.1:8554/shed_sub
input_args: preset-rtsp-restream-low-latency
roles:
- detect
- path: rtsp://***redacted for security***@127.0.0.1:8554/shed
input_args: preset-rtsp-restream-low-latency
roles:
- record
live:
# stream_name: shed_sub # prefer sub channel for live stream
stream_name: shed # default main channel for live stream
detect:
enabled: True # <---- disable detection until you have a working camera feed
width: 1280 # <---- update for your camera's resolution
height: 720 # <---- update for your camera's resolution
motion:
mask:
- 0,720,210,720,568,448,576,182,523,109,705,77,685,0,503,0,0,0
- 1229,70,1223,0,1000,0,1005,67
objects:
track:
- person
- dog
- cat
# Optional: filters to reduce false positives for specific object types
filters:
person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)
min_area: 10000
birdseye:
enable: object
# Optional: Configuration for the jpg snapshots published via MQTT
mqtt:
# Optional: Enable publishing snapshot via mqtt for camera (default: shown below)
# NOTE: Only applies to publishing image data to MQTT via 'frigate/<camera_name>/<object_name>/snapshot'.
# All other messages will still be published.
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: shown below)
height: 270
# Optional: jpeg encode quality (default: shown below)
quality: 70
# Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 2
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: True
# Camera ========================== Video Doorbell ================================
video_doorbell: # <------ Name the camera
ffmpeg:
inputs:
- path: rtsp://***redacted for security***@127.0.0.1:8554/video_doorbell
input_args: preset-rtsp-restream-low-latency
roles:
- detect
- record
live:
stream_name: video_doorbell # default channel for live stream
# Optional: Set the height of the jsmpeg 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 jsmpeg stream. Width is computed to match known aspect ratio.
height: 1200
# Optional: Set the encode quality of the jsmpeg stream (default: shown below)
# 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
quality: 8
# Optional: in-feed timestamp style configuration
# NOTE: Can be overridden at the camera level
detect:
enabled: True # <---- disable detection until you have a working camera feed
width: 1600 # <---- update for your camera's resolution
height: 1200 # <---- update for your camera's resolution
fps: 15 # <---- update for your camera's fps
stationary:
interval: 50
threshold: 150 # <---- video doorbell fps is 15 which is 3 times the default. Hence the default threshold should be 3 times as well.
motion:
mask:
- 0,0,1600,0,1600,571,428,580,0,276
objects:
track:
- person
- dog
- cat
- car
# Optional: filters to reduce false positives for specific object types
filters:
person:
mask:
- 0,0,1600,0,1600,582,706,599,0,780
min_area: 3000
dog:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)
max_area: 50000
birdseye:
enable: object
# Optional: Configuration for the jpeg snapshots published via MQTT
mqtt:
# Optional: Enable publishing snapshot via mqtt for camera (default: shown below)
# NOTE: Only applies to publishing image data to MQTT via 'frigate/<camera_name>/<object_name>/snapshot'.
# All other messages will still be published.
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: shown below)
height: 270
# Optional: jpeg encode quality (default: shown below)
quality: 70
# Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
required_zones: []
# Optional: Configuration for how camera is handled in the GUI.
ui:
# Optional: Adjust sort order of cameras in the UI. Larger numbers come later (default: shown below)
# By default the cameras are sorted alphabetically.
order: 3
# Optional: Whether or not to show the camera in the Frigate UI (default: shown below)
dashboard: True Relevant log output2024-05-04 11:32:43.475076638 [INFO] Preparing Frigate...
2024-05-04 11:32:43.502572923 [INFO] Starting Frigate...
2024-05-04 11:32:45.563677785 [2024-05-04 11:32:45] frigate.app INFO : Starting Frigate (0.13.2-6476f8a)
2024-05-04 11:32:45.615364513 [2024-05-04 11:32:45] peewee_migrate.logs INFO : Starting migrations
2024-05-04 11:32:45.636928154 [2024-05-04 11:32:45] peewee_migrate.logs INFO : There is nothing to migrate
2024-05-04 11:32:45.640957656 [2024-05-04 11:32:45] frigate.app INFO : Recording process started: 728
2024-05-04 11:32:45.642762769 [2024-05-04 11:32:45] frigate.app INFO : go2rtc process pid: 89
2024-05-04 11:32:45.664716629 [2024-05-04 11:32:45] detector.coral INFO : Starting detection process: 738
2024-05-04 11:32:45.667020364 [2024-05-04 11:32:45] frigate.app INFO : Output process started: 740
2024-05-04 11:32:45.670775522 [2024-05-04 11:32:45] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as usb
2024-05-04 11:32:47.925357942 [2024-05-04 11:32:47] frigate.app INFO : Camera processor started for backyard: 762
2024-05-04 11:32:47.931411414 [2024-05-04 11:32:47] frigate.app INFO : Camera processor started for frontyard: 764
2024-05-04 11:32:47.937513151 [2024-05-04 11:32:47] frigate.app INFO : Camera processor started for shed: 766
2024-05-04 11:32:47.944134185 [2024-05-04 11:32:47] frigate.app INFO : Camera processor started for video_doorbell: 768
2024-05-04 11:32:47.949990456 [2024-05-04 11:32:47] frigate.app INFO : Capture process started for backyard: 769
2024-05-04 11:32:47.955912048 [2024-05-04 11:32:47] frigate.app INFO : Capture process started for frontyard: 773
2024-05-04 11:32:47.962162276 [2024-05-04 11:32:47] frigate.app INFO : Capture process started for shed: 777
2024-05-04 11:32:47.968483261 [2024-05-04 11:32:47] frigate.app INFO : Capture process started for video_doorbell: 782
2024-05-04 11:32:48.324230839 [2024-05-04 11:32:48] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found
2024-05-04 11:32:53.109444806 [2024-05-04 11:32:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:32:53.109609580 [2024-05-04 11:32:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:33:08.002717076 [2024-05-04 11:33:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:33:08.002884389 [2024-05-04 11:33:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:33:08.003011148 [2024-05-04 11:33:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:33:13.143213495 [2024-05-04 11:33:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:33:13.143340618 [2024-05-04 11:33:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:33:18.027075291 [2024-05-04 11:33:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:33:18.027146030 [2024-05-04 11:33:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:33:18.027201902 [2024-05-04 11:33:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:33:23.150274093 [2024-05-04 11:33:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:33:23.150423595 [2024-05-04 11:33:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:33:28.039036414 [2024-05-04 11:33:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:33:28.039193677 [2024-05-04 11:33:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:33:28.039301088 [2024-05-04 11:33:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:33:33.176870053 [2024-05-04 11:33:33] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:33:33.177103746 [2024-05-04 11:33:33] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:33:38.070822132 [2024-05-04 11:33:38] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:33:38.071006632 [2024-05-04 11:33:38] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:33:38.071122195 [2024-05-04 11:33:38] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:44:38.094914054 [2024-05-04 11:44:38] watchdog.video_doorbell INFO : video_doorbell exceeded fps limit. Exiting ffmpeg...
2024-05-04 11:44:38.094932126 [2024-05-04 11:44:38] watchdog.video_doorbell INFO : Waiting for ffmpeg to exit gracefully...
2024-05-04 11:44:38.112419881 [2024-05-04 11:44:38] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:44:38.112470714 [2024-05-04 11:44:38] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:44:48.114837964 [2024-05-04 11:44:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:44:48.114912606 [2024-05-04 11:44:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:44:48.114975836 [2024-05-04 11:44:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x6262617b4800] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2024-05-04 11:44:48.115029637 [2024-05-04 11:44:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x6262617b4800] Non-monotonous DTS in output stream 0:0; previous: 9332736, current: 9332736; changing to 9332737. This may result in incorrect timestamps in the output file.
2024-05-04 11:49:23.867202973 [2024-05-04 11:49:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:49:23.867301592 [2024-05-04 11:49:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:49:28.133722414 [2024-05-04 11:49:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:49:28.133928874 [2024-05-04 11:49:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:49:28.134058867 [2024-05-04 11:49:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Connection timed out
2024-05-04 11:49:33.265462659 [2024-05-04 11:49:33] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:49:33.265606080 [2024-05-04 11:49:33] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:49:38.152122439 [2024-05-04 11:49:38] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:49:38.152291592 [2024-05-04 11:49:38] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:49:38.152369291 [2024-05-04 11:49:38] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:49:43.284126155 [2024-05-04 11:49:43] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:49:43.284291620 [2024-05-04 11:49:43] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:49:48.170693775 [2024-05-04 11:49:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:49:48.170769480 [2024-05-04 11:49:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:49:48.171089342 [2024-05-04 11:49:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:49:53.302352095 [2024-05-04 11:49:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:49:53.302520464 [2024-05-04 11:49:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:49:58.188408028 [2024-05-04 11:49:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:49:58.188511077 [2024-05-04 11:49:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:49:58.188514073 [2024-05-04 11:49:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:50:03.313245007 [2024-05-04 11:50:03] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:50:03.313430365 [2024-05-04 11:50:03] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:50:08.201635100 [2024-05-04 11:50:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:50:08.201753783 [2024-05-04 11:50:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:50:08.201861706 [2024-05-04 11:50:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:50:13.331908487 [2024-05-04 11:50:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:50:13.331917042 [2024-05-04 11:50:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:50:18.218991181 [2024-05-04 11:50:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:50:18.219117400 [2024-05-04 11:50:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:50:18.219209976 [2024-05-04 11:50:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:56:41.486940454 [2024-05-04 11:56:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:56:41.487016594 [2024-05-04 11:56:41] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:56:48.245284127 [2024-05-04 11:56:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:56:48.253067509 [2024-05-04 11:56:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:56:48.253075031 [2024-05-04 11:56:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Connection timed out
2024-05-04 11:56:53.376923330 [2024-05-04 11:56:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:56:53.376987543 [2024-05-04 11:56:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:56:58.262884497 [2024-05-04 11:56:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:56:58.263004681 [2024-05-04 11:56:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:56:58.263100320 [2024-05-04 11:56:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:03.394619123 [2024-05-04 11:57:03] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:03.394761154 [2024-05-04 11:57:03] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:08.279685919 [2024-05-04 11:57:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:08.279732165 [2024-05-04 11:57:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:08.279787522 [2024-05-04 11:57:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:13.403392541 [2024-05-04 11:57:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:13.403538294 [2024-05-04 11:57:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:18.291538554 [2024-05-04 11:57:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:18.291576632 [2024-05-04 11:57:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:18.291729446 [2024-05-04 11:57:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:23.422562370 [2024-05-04 11:57:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:23.422721392 [2024-05-04 11:57:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:28.313368352 [2024-05-04 11:57:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:28.313388186 [2024-05-04 11:57:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:28.313501038 [2024-05-04 11:57:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:33.436681359 [2024-05-04 11:57:33] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:33.436807993 [2024-05-04 11:57:33] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:38.320959328 [2024-05-04 11:57:38] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:38.321047981 [2024-05-04 11:57:38] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:38.321091717 [2024-05-04 11:57:38] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:43.445166620 [2024-05-04 11:57:43] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:43.445320887 [2024-05-04 11:57:43] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:48.333581681 [2024-05-04 11:57:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:48.333696462 [2024-05-04 11:57:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:48.333789047 [2024-05-04 11:57:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:57:53.469921340 [2024-05-04 11:57:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:57:53.470042372 [2024-05-04 11:57:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:57:58.356137008 [2024-05-04 11:57:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:57:58.356265549 [2024-05-04 11:57:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:57:58.356284412 [2024-05-04 11:57:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:03.487004295 [2024-05-04 11:58:03] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:03.487113267 [2024-05-04 11:58:03] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:08.374579839 [2024-05-04 11:58:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:08.374755979 [2024-05-04 11:58:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:08.374899180 [2024-05-04 11:58:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:13.505707349 [2024-05-04 11:58:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:13.505760505 [2024-05-04 11:58:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:18.393970910 [2024-05-04 11:58:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:18.394257747 [2024-05-04 11:58:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:18.394407357 [2024-05-04 11:58:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:23.533044524 [2024-05-04 11:58:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:23.533230449 [2024-05-04 11:58:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:28.414434286 [2024-05-04 11:58:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:28.414548846 [2024-05-04 11:58:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:28.414648369 [2024-05-04 11:58:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:33.551545345 [2024-05-04 11:58:33] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:33.551612363 [2024-05-04 11:58:33] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:38.434214905 [2024-05-04 11:58:38] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:38.434301113 [2024-05-04 11:58:38] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:38.434357838 [2024-05-04 11:58:38] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:43.565686248 [2024-05-04 11:58:43] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:43.566215106 [2024-05-04 11:58:43] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:48.451549708 [2024-05-04 11:58:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:48.451729457 [2024-05-04 11:58:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:48.451859110 [2024-05-04 11:58:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:58:53.584322244 [2024-05-04 11:58:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:58:53.584411763 [2024-05-04 11:58:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:58:58.470213005 [2024-05-04 11:58:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:58:58.470340611 [2024-05-04 11:58:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:58:58.470345496 [2024-05-04 11:58:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:03.605519910 [2024-05-04 11:59:03] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:03.605722227 [2024-05-04 11:59:03] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:08.491682855 [2024-05-04 11:59:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:08.491857371 [2024-05-04 11:59:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:08.492064439 [2024-05-04 11:59:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:13.627751906 [2024-05-04 11:59:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:13.628286896 [2024-05-04 11:59:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:18.513015622 [2024-05-04 11:59:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:18.513067676 [2024-05-04 11:59:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:18.513132850 [2024-05-04 11:59:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:23.645790900 [2024-05-04 11:59:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:23.645914936 [2024-05-04 11:59:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:28.533372488 [2024-05-04 11:59:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:28.533638719 [2024-05-04 11:59:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:28.533761377 [2024-05-04 11:59:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:33.662301221 [2024-05-04 11:59:33] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:33.662306077 [2024-05-04 11:59:33] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:38.562349678 [2024-05-04 11:59:38] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:38.562557586 [2024-05-04 11:59:38] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:38.562613401 [2024-05-04 11:59:38] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:43.694474596 [2024-05-04 11:59:43] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:43.694725394 [2024-05-04 11:59:43] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:48.585411214 [2024-05-04 11:59:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:48.585444188 [2024-05-04 11:59:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:48.585573497 [2024-05-04 11:59:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 11:59:53.711093453 [2024-05-04 11:59:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 11:59:53.711156280 [2024-05-04 11:59:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 11:59:58.596576296 [2024-05-04 11:59:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 11:59:58.596685019 [2024-05-04 11:59:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 11:59:58.596764483 [2024-05-04 11:59:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 12:00:03.731386320 [2024-05-04 12:00:03] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:03.731392139 [2024-05-04 12:00:03] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 12:00:08.617230294 [2024-05-04 12:00:08] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 12:00:08.617346837 [2024-05-04 12:00:08] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 12:00:08.617423503 [2024-05-04 12:00:08] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 12:00:13.751558090 [2024-05-04 12:00:13] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:13.751684829 [2024-05-04 12:00:13] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 12:00:18.638739598 [2024-05-04 12:00:18] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 12:00:18.638901428 [2024-05-04 12:00:18] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 12:00:18.639002899 [2024-05-04 12:00:18] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 12:00:23.776442877 [2024-05-04 12:00:23] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:23.776504025 [2024-05-04 12:00:23] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 12:00:28.662998877 [2024-05-04 12:00:28] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 12:00:28.663149947 [2024-05-04 12:00:28] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 12:00:28.663242633 [2024-05-04 12:00:28] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input
2024-05-04 12:00:41.821151367 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:41.821711427 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:41.821821583 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:41.821825953 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:41.821963367 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:41.822074866 [2024-05-04 12:00:41] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 12:00:45.714784643 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7c0e5064eb80] moov atom not found
2024-05-04 12:00:45.724663997 [ERROR:[email protected]] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2024-05-04 12:00:45.724670210
2024-05-04 12:00:45.724673051 OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2024-05-04 12:00:45.724674979
2024-05-04 12:00:45.724676687
2024-05-04 12:00:45.788400830 [2024-05-04 12:00:45] frigate.record.maintainer WARNING : Failed to probe corrupt segment /tmp/cache/video_doorbell@20240504120031+0100.mp4
2024-05-04 12:00:45.788427258 [2024-05-04 12:00:45] frigate.record.maintainer WARNING : Discarding a corrupt recording segment: /tmp/cache/video_doorbell@20240504120031+0100.mp4
2024-05-04 12:00:48.687790123 [2024-05-04 12:00:48] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 12:00:48.687924787 [2024-05-04 12:00:48] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 12:00:48.687943329 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69180, current: 39514; changing to 69181. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688084916 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69181, current: 40538; changing to 69182. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688103299 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69182, current: 41562; changing to 69183. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688227641 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69183, current: 42586; changing to 69184. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688257312 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69184, current: 43610; changing to 69185. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688382974 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69185, current: 44634; changing to 69186. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688413687 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69186, current: 45658; changing to 69187. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688533533 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69187, current: 46682; changing to 69188. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688563993 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69188, current: 47706; changing to 69189. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688644819 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69189, current: 48730; changing to 69190. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688704595 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69190, current: 49754; changing to 69191. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688775230 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69191, current: 50778; changing to 69192. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688845925 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69192, current: 51802; changing to 69193. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.688921632 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69193, current: 52826; changing to 69194. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689008057 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69194, current: 53850; changing to 69195. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689098873 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69195, current: 54874; changing to 69196. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689159994 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69196, current: 55898; changing to 69197. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689228169 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69197, current: 56922; changing to 69198. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689300983 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69198, current: 57946; changing to 69199. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689367613 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69199, current: 58970; changing to 69200. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689435947 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69200, current: 59994; changing to 69201. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689501775 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69201, current: 61018; changing to 69202. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689567202 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69202, current: 62042; changing to 69203. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689632978 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69203, current: 63066; changing to 69204. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689689943 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69204, current: 64090; changing to 69205. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689744417 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69205, current: 65114; changing to 69206. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689814392 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69206, current: 66138; changing to 69207. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689881798 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69207, current: 67162; changing to 69208. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.689948658 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 69208, current: 68186; changing to 69209. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690019294 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [aac @ 0x57a63c16b140] Queue input is backward in time
2024-05-04 12:00:48.690088437 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70234, current: 32384; changing to 70235. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690149748 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70235, current: 33408; changing to 70236. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690194616 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70236, current: 34432; changing to 70237. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690236216 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70237, current: 35456; changing to 70238. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690273139 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70238, current: 36480; changing to 70239. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690310538 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70239, current: 37504; changing to 70240. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690347641 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70240, current: 38528; changing to 70241. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690384738 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70241, current: 39552; changing to 70242. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690421788 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70242, current: 40576; changing to 70243. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690459155 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70243, current: 41600; changing to 70244. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690496693 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70244, current: 42624; changing to 70245. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690533863 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70245, current: 43648; changing to 70246. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690568730 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70246, current: 44672; changing to 70247. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690607455 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70247, current: 45696; changing to 70248. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690643587 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70248, current: 46720; changing to 70249. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690682914 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70249, current: 47744; changing to 70250. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690718245 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70250, current: 48768; changing to 70251. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690754479 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70251, current: 49792; changing to 70252. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690789581 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70252, current: 50816; changing to 70253. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690826218 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70253, current: 51840; changing to 70254. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690862675 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70254, current: 52864; changing to 70255. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690899175 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70255, current: 53888; changing to 70256. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690935048 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70256, current: 54912; changing to 70257. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.690969641 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70257, current: 55936; changing to 70258. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691006098 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70258, current: 56960; changing to 70259. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691041711 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70259, current: 57984; changing to 70260. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691077153 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70260, current: 59008; changing to 70261. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691114939 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70261, current: 60032; changing to 70262. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691150606 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70262, current: 61056; changing to 70263. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691185606 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70263, current: 62080; changing to 70264. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691223008 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70264, current: 63104; changing to 70265. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691260653 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70265, current: 64128; changing to 70266. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691295573 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70266, current: 65152; changing to 70267. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691332883 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70267, current: 66176; changing to 70268. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691368501 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70268, current: 67200; changing to 70269. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691406666 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [aac @ 0x57a63c16b140] Queue input is backward in time
2024-05-04 12:00:48.691445449 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70269, current: 68224; changing to 70270. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691483666 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70270, current: 69248; changing to 70271. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691517675 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70271, current: 45712; changing to 70272. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691555188 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70272, current: 46736; changing to 70273. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691591618 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70273, current: 47760; changing to 70274. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691628228 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70274, current: 48784; changing to 70275. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691663766 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70275, current: 49808; changing to 70276. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691699787 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70276, current: 50832; changing to 70277. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691735612 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70277, current: 51856; changing to 70278. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691772888 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70278, current: 52880; changing to 70279. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691810329 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70279, current: 53904; changing to 70280. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691847961 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70280, current: 54928; changing to 70281. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691885012 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70281, current: 55952; changing to 70282. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691921690 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70282, current: 56976; changing to 70283. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691956697 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70283, current: 58000; changing to 70284. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.691993210 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70284, current: 59024; changing to 70285. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692029851 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70285, current: 60048; changing to 70286. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692065911 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70286, current: 61072; changing to 70287. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692102146 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70287, current: 62096; changing to 70288. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692136355 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70288, current: 63120; changing to 70289. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692172586 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70289, current: 64144; changing to 70290. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692210908 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70290, current: 65168; changing to 70291. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692245100 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70291, current: 66192; changing to 70292. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692281880 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70292, current: 67216; changing to 70293. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692317562 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70293, current: 68240; changing to 70294. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692353051 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70294, current: 69264; changing to 70295. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692389043 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : [segment @ 0x57a63c164e40] Non-monotonous DTS in output stream 0:1; previous: 70295, current: 70288; changing to 70296. This may result in incorrect timestamps in the output file.
2024-05-04 12:00:48.692427111 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Connection timed out
2024-05-04 12:00:48.692473595 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Impossible to convert between the formats supported by the filter 'Parsed_fps_0' and the filter 'auto_scale_0'
2024-05-04 12:00:48.692513576 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Error reinitializing filters!
2024-05-04 12:00:48.692552601 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Error while filtering: Function not implemented
2024-05-04 12:00:48.692590945 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Finishing stream 1:0 without any data written to it.
2024-05-04 12:00:48.692629168 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Impossible to convert between the formats supported by the filter 'Parsed_fps_0' and the filter 'auto_scale_0'
2024-05-04 12:00:48.692666788 [2024-05-04 12:00:48] ffmpeg.video_doorbell.detect ERROR : Error configuring filter graph
2024-05-04 12:00:53.822105931 [2024-05-04 12:00:53] frigate.video ERROR : video_doorbell: Unable to read frames from ffmpeg process.
2024-05-04 12:00:53.822222435 [2024-05-04 12:00:53] frigate.video ERROR : video_doorbell: ffmpeg process is not running. exiting capture thread...
2024-05-04 12:00:58.708238442 [2024-05-04 12:00:58] watchdog.video_doorbell ERROR : Ffmpeg process crashed unexpectedly for video_doorbell.
2024-05-04 12:00:58.708446046 [2024-05-04 12:00:58] watchdog.video_doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-05-04 12:00:58.708507270 [2024-05-04 12:00:58] ffmpeg.video_doorbell.detect ERROR : rtsp://*:*@127.0.0.1:8554/video_doorbell: Invalid data found when processing input FFprobe output from your cameraffprobe version n5.1-2-g915ef932a3-20220731 Copyright (c) 2007-2022 the FFmpeg developers
built with gcc 12.1.0 (crosstool-NG 1.25.0.55_3defb7b)
configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static --pkg-config=pkg-config --cross-prefix=x86_64-ffbuild-linux-gnu- --arch=x86_64 --target-os=linux --enable-gpl --enable-version3 --disable-debug --enable-iconv --enable-libxml2 --enable-zlib --enable-libfreetype --enable-libfribidi --enable-gmp --enable-lzma --enable-fontconfig --enable-libvorbis --enable-opencl --enable-libpulse --enable-libvmaf --enable-libxcb --enable-xlib --enable-amf --enable-libaom --enable-libaribb24 --enable-avisynth --enable-libdav1d --enable-libdavs2 --disable-libfdk-aac --enable-ffnvcodec --enable-cuda-llvm --enable-frei0r --enable-libgme --enable-libass --enable-libbluray --enable-libjxl --enable-libmp3lame --enable-libopus --enable-mbedtls --enable-librist --enable-libtheora --enable-libvpx --enable-libwebp --enable-lv2 --enable-libmfx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopenmpt --enable-librav1e --enable-librubberband --disable-schannel --enable-sdl2 --enable-libsoxr --enable-libsrt --enable-libsvtav1 --enable-libtwolame --enable-libuavs3d --enable-libdrm --enable-vaapi --enable-libvidstab --enable-vulkan --enable-libshaderc --enable-libplacebo --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libzimg --enable-libzvbi --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags= --extra-ldflags=-pthread --extra-ldexeflags=-pie --extra-libs='-ldl -lgomp' --extra-version=20220731
libavutil 57. 28.100 / 57. 28.100
libavcodec 59. 37.100 / 59. 37.100
libavformat 59. 27.100 / 59. 27.100
libavdevice 59. 7.100 / 59. 7.100
libavfilter 8. 44.100 / 8. 44.100
libswscale 6. 7.100 / 6. 7.100
libswresample 4. 7.100 / 4. 7.100
libpostproc 56. 6.100 / 56. 6.100
[rtsp @ 0x5c02254c6140] method SETUP failed: 461 Unsupported transport
Input #0, rtsp, from 'rtsp://ha:[email protected]:8554/video_doorbell':
Metadata:
title : go2rtc/1.8.4
Duration: N/A, start: 0.000000, bitrate: N/A
Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1600x1200 [SAR 1:1 DAR 4:3], 15 fps, 15 tbr, 90k tbn
Stream #0:1: Audio: aac (LC), 48000 Hz, stereo, fltp Frigate stats{"cameras":{"backyard":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":769,"detection_enabled":1,"detection_fps":1.5,"ffmpeg_pid":774,"pid":762,"process_fps":5.1,"skipped_fps":0.0},"frontyard":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.2,"capture_pid":773,"detection_enabled":1,"detection_fps":0.1,"ffmpeg_pid":778,"pid":764,"process_fps":5.2,"skipped_fps":0.0},"shed":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":777,"detection_enabled":1,"detection_fps":0.1,"ffmpeg_pid":790,"pid":766,"process_fps":5.0,"skipped_fps":0.0},"video_doorbell":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":15.0,"capture_pid":782,"detection_enabled":1,"detection_fps":4.9,"ffmpeg_pid":15061,"pid":768,"process_fps":15.0,"skipped_fps":0.0}},"cpu_usages":{"1":{"cmdline":"/package/admin/s6/command/s6-svscan -d4 -- /run/service","cpu":"0.0","cpu_average":"0","mem":"0.0"},"15":{"cmdline":"s6-supervise s6-linux-init-shutdownd","cpu":"0.0","cpu_average":"0","mem":"0.0"},"16":{"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 s6rc-fdholder","cpu":"0.0","cpu_average":"0","mem":"0.0"},"26":{"cmdline":"s6-supervise frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"27":{"cmdline":"s6-supervise frigate-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"28":{"cmdline":"s6-supervise go2rtc","cpu":"0.0","cpu_average":"0","mem":"0.0"},"29":{"cmdline":"s6-supervise go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.0"},"30":{"cmdline":"s6-supervise go2rtc-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"31":{"cmdline":"s6-supervise nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"32":{"cmdline":"s6-supervise nginx-log","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/nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"81":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/frigate","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":"9.7","cpu_average":"11","mem":"3.3"},"96":{"cmdline":"bash ./run.user go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.1"},"103":{"cmdline":"python3 -u -m frigate","cpu":"5.4","cpu_average":"21","mem":"47.0"},"118":{"cmdline":"nginx: master process nginx","cpu":"0.0","cpu_average":"0","mem":"0.6"},"145":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"146":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"147":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"148":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"153":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"172":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"205":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"247":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"284":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"321":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"358":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"384":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"422":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"1.0"},"469":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.7"},"508":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"543":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.3"},"580":{"cmdline":"nginx: cache manager process","cpu":"0.0","cpu_average":"0","mem":"0.2"},"726":{"cmdline":"frigate.logger ","cpu":"0.0","cpu_average":"0","mem":"4.9"},"728":{"cmdline":"frigate.recording_manager","cpu":"10.3","cpu_average":"2","mem":"7.7"},"737":{"cmdline":"/usr/bin/python3 -c from multiprocessing.resource_tracker import main;main(53)","cpu":"0.0","cpu_average":"0","mem":"0.5"},"738":{"cmdline":"frigate.detector.coral","cpu":"0.0","cpu_average":"13","mem":"6.5"},"740":{"cmdline":"frigate.output ","cpu":"1.8","cpu_average":"1","mem":"5.8"},"744":{"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"},"747":{"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"},"748":{"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"},"749":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1600x1200 -i pipe: -f mpegts -s 1600x1200 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.8"},"762":{"cmdline":"frigate.process:backyard","cpu":"1.2","cpu_average":"6","mem":"9.6"},"764":{"cmdline":"frigate.process:frontyard","cpu":"2.4","cpu_average":"6","mem":"10.4"},"766":{"cmdline":"frigate.process:shed ","cpu":"0.6","cpu_average":"9","mem":"9.6"},"768":{"cmdline":"frigate.process:video_doorbell","cpu":"4.2","cpu_average":"17","mem":"9.6"},"769":{"cmdline":"frigate.capture:backyard","cpu":"1.8","cpu_average":"1","mem":"9.3"},"773":{"cmdline":"frigate.capture:frontyard","cpu":"1.8","cpu_average":"1","mem":"9.3"},"774":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/backyard_sub -r 5 -vf fps=5,scale_vaapi=w=1280:h=720:format=nv12,hwdownload,format=nv12,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"3.0","cpu_average":"3","mem":"2.8"},"777":{"cmdline":"frigate.capture:shed ","cpu":"1.2","cpu_average":"1","mem":"9.3"},"778":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/frontyard_sub -r 5 -vf fps=5,scale_vaapi=w=1280:h=720:format=nv12,hwdownload,format=nv12,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"4.2","cpu_average":"3","mem":"2.6"},"782":{"cmdline":"frigate.capture:video_doorbell","cpu":"5.4","cpu_average":"4","mem":"9.7"},"786":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/backyard -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c:v copy -c:a aac /tmp/cache/backyard@%Y%m%d%H%M%S%z.mp4","cpu":"1.8","cpu_average":"2","mem":"1.3"},"790":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/shed_sub -r 5 -vf fps=5,scale_vaapi=w=1280:h=720:format=nv12,hwdownload,format=nv12,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"3.6","cpu_average":"3","mem":"2.6"},"792":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/frontyard -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c:v copy -c:a aac /tmp/cache/frontyard@%Y%m%d%H%M%S%z.mp4","cpu":"3.0","cpu_average":"2","mem":"1.3"},"796":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/shed -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c:v copy -c:a aac /tmp/cache/shed@%Y%m%d%H%M%S%z.mp4","cpu":"3.0","cpu_average":"2","mem":"1.3"},"15033":{"cmdline":"ffmpeg -hide_banner -v error -allowed_media_types video+audio -hwaccel vaapi -hwaccel_output_format nv12 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/video_doorbell_raw -vf drawtext=text='%{localtime}':x=w/25:y=(h-th)-h/25:fontsize=h/25:fontcolor=white:shadowx=2:shadowy=2,format=vaapi|nv12,hwupload -c:v h264_vaapi -g 50 -bf 0 -profile:v high -level:v 4.1 -sei:v 0 -codec:a copy -c:a copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/0264042743ac81d6876fd3853c21dd51","cpu":"12.7","cpu_average":"14","mem":"2.5"},"15061":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -hwaccel_flags allow_profile_mismatch -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -user_agent FFmpeg Frigate/0.13.2-6476f8a -rtsp_transport tcp -timeout 5000000 -fflags nobuffer -flags low_delay -i rtsp://*:*@127.0.0.1:8554/video_doorbell -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c:v copy -c:a aac /tmp/cache/video_doorbell@%Y%m%d%H%M%S%z.mp4 -r 15 -vf fps=15,scale_vaapi=w=1600:h=1200:format=nv12,hwdownload,format=nv12,format=yuv420p -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"21.2","cpu_average":"23","mem":"3.4"},"26792":{"cmdline":"sleep 30s","cpu":"0.0","cpu_average":"0","mem":"0.1"}},"detection_fps":6.6,"detectors":{"coral":{"detection_start":0.0,"inference_speed":9.16,"pid":738}},"gpu_usages":{"intel-vaapi":{"gpu":"2.53%","mem":"-%"}},"processes":{"go2rtc":{"pid":89},"logger":{"pid":726},"recording":{"pid":728}},"service":{"last_updated":1714821870,"latest_version":"0.13.2","storage":{"/dev/shm":{"free":113.4,"mount_type":"tmpfs","total":123.0,"used":9.6},"/media/frigate/clips":{"free":1622182.0,"mount_type":"cifs","total":2621440.0,"used":999258.0},"/media/frigate/recordings":{"free":1622182.0,"mount_type":"cifs","total":2621440.0,"used":999258.0},"/tmp/cache":{"free":1005.2,"mount_type":"tmpfs","total":1024.0,"used":18.8}},"temperatures":{},"uptime":3103,"version":"0.13.2-6476f8a"}} Operating systemDebian Install methodDocker Compose Coral versionUSB Network connectionWired Camera make and modelNest Hello Video Doorbell Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Answered by
NickM-27
May 4, 2024
Replies: 1 comment 1 reply
-
This is why the reference config specifically says not to copy it, it should only be used as a reference. The snapshot -> height: 175 is the issue here |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
janusn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is why the reference config specifically says not to copy it, it should only be used as a reference.
The snapshot -> height: 175 is the issue here