Skip to content

Instantly share code, notes, and snippets.

@rubin110
Created March 1, 2025 03:57
Show Gist options
  • Save rubin110/3815926a44d01cd432c488247de6604e to your computer and use it in GitHub Desktop.
Save rubin110/3815926a44d01cd432c488247de6604e to your computer and use it in GitHub Desktop.
2025-02-28 21:53:56.503871737 [INFO] Preparing new go2rtc config...
2025-02-28 21:53:56.503955305 [INFO] Preparing Frigate...
2025-02-28 21:53:56.504352560 [INFO] Starting NGINX...
2025-02-28 21:53:56.507807391 [INFO] No TLS certificate found. Generating a self signed certificate...
2025-02-28 21:53:56.541504001 [INFO] Starting Frigate...
2025-02-28 21:53:56.818154407 [INFO] Starting go2rtc...
2025-02-28 21:53:56.891509411 21:53:56.891 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-02-28 21:53:56.891512158 21:53:56.891 INF config path=/dev/shm/go2rtc.yaml
2025-02-28 21:53:56.891854714 21:53:56.891 INF [api] listen addr=:1984
2025-02-28 21:53:56.891856392 21:53:56.891 INF [rtsp] listen addr=:8554
2025-02-28 21:53:56.891935065 21:53:56.891 INF [webrtc] listen addr=:8555/tcp
2025-02-28 21:53:56.972341764 [INFO] Starting certsync...
2025-02-28 21:53:57.008131149 127.0.0.1 - - [28/Feb/2025:21:53:57 -0600] "" 400 0 "-" "-" "-"
2025-02-28 21:53:58.395100429 [2025-02-28 21:53:58] frigate.config.config INFO : No config file found, saving default config
2025-02-28 21:53:58.395427482 [2025-02-28 21:53:58] frigate.config.config INFO : Created default config file, see the getting started docs for configuration https://docs.frigate.video/guides/getting_started
2025-02-28 21:53:58.465190645 2025/02/28 21:53:58 [error] 200#200: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 10.110.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.110.0.1:5000"
2025-02-28 21:53:58.465202069 2025/02/28 21:53:58 [error] 200#200: *2 auth request unexpected status: 502 while sending to client, client: 10.110.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "10.110.0.1:5000"
2025-02-28 21:53:58.556826268 [2025-02-28 21:53:58] frigate.util.services INFO : Automatically detected vaapi hwaccel for video decoding
2025-02-28 21:53:58.565583012 [2025-02-28 21:53:58] frigate.app INFO : Starting Frigate (0.15.0-cea210d)
2025-02-28 21:53:58.565584994 [2025-02-28 21:53:58] frigate.app INFO : Creating directory: /config/model_cache
2025-02-28 21:53:58.571802664 [2025-02-28 21:53:58] frigate.app INFO : Making backup of DB before migrations...
2025-02-28 21:53:58.572170070 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Starting migrations
2025-02-28 21:53:58.573163531 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "001_create_events_table"
2025-02-28 21:53:58.573167751 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "event" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "label" VARCHAR(20) NOT NULL, "camera" VARCHAR(20) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME NOT NULL, "top_score" REAL NOT NULL, "false_positive" INTEGER NOT NULL, "zones" JSON NOT NULL, "thumbnail" TEXT NOT NULL)',)
2025-02-28 21:53:58.573393378 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "event_label" ON "event" ("label")',)
2025-02-28 21:53:58.573614151 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "event_camera" ON "event" ("camera")',)
2025-02-28 21:53:58.573743632 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 001_create_events_table
2025-02-28 21:53:58.575854117 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "002_add_clip_snapshot"
2025-02-28 21:53:58.575855988 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'has_clip', <BooleanField: Event.has_clip>)
2025-02-28 21:53:58.577203191 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'has_snapshot', <BooleanField: Event.has_snapshot>)
2025-02-28 21:53:58.578283756 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 002_add_clip_snapshot
2025-02-28 21:53:58.580178384 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "003_create_recordings_table"
2025-02-28 21:53:58.580180705 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "recordings" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "camera" VARCHAR(20) NOT NULL, "path" VARCHAR(255) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME NOT NULL, "duration" REAL NOT NULL)',)
2025-02-28 21:53:58.580360758 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "recordings_camera" ON "recordings" ("camera")',)
2025-02-28 21:53:58.580460232 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE UNIQUE INDEX IF NOT EXISTS "recordings_path" ON "recordings" ("path")',)
2025-02-28 21:53:58.580586249 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "recordings_start_time_end_time" ON "recordings" (start_time, end_time)',)
2025-02-28 21:53:58.580941610 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 003_create_recordings_table
2025-02-28 21:53:58.583210526 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "004_add_bbox_region_area"
2025-02-28 21:53:58.583212412 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'region', <JSONField: Event.region>)
2025-02-28 21:53:58.584418720 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'box', <JSONField: Event.box>)
2025-02-28 21:53:58.585560924 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'area', <IntegerField: Event.area>)
2025-02-28 21:53:58.586691990 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 004_add_bbox_region_area
2025-02-28 21:53:58.588439001 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "005_make_end_time_nullable"
2025-02-28 21:53:58.588483029 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'end_time')
2025-02-28 21:53:58.589529481 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 005_make_end_time_nullable
2025-02-28 21:53:58.591179185 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "006_add_motion_active_objects"
2025-02-28 21:53:58.591225157 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('recordings', 'objects', <IntegerField: Recordings.objects>)
2025-02-28 21:53:58.591433710 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('recordings', 'motion', <IntegerField: Recordings.motion>)
2025-02-28 21:53:58.591621486 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_activity" ON "recordings" ("camera", "start_time" DESC, "regions")',)
2025-02-28 21:53:58.591884952 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 006_add_motion_active_objects
2025-02-28 21:53:58.593204963 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "007_add_retain_indefinitely"
2025-02-28 21:53:58.593249932 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'retain_indefinitely', <BooleanField: Event.retain_indefinitely>)
2025-02-28 21:53:58.594431651 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 007_add_retain_indefinitely
2025-02-28 21:53:58.596275064 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "008_add_sub_label"
2025-02-28 21:53:58.596321408 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'sub_label', <CharField: Event.sub_label>)
2025-02-28 21:53:58.597041815 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 008_add_sub_label
2025-02-28 21:53:58.598822962 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "009_add_object_filter_ratio"
2025-02-28 21:53:58.598867639 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'ratio', <FloatField: Event.ratio>)
2025-02-28 21:53:58.600062006 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 009_add_object_filter_ratio
2025-02-28 21:53:58.601592919 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "010_add_plus_image_id"
2025-02-28 21:53:58.601619814 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'plus_id', <CharField: Event.plus_id>)
2025-02-28 21:53:58.601967496 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 010_add_plus_image_id
2025-02-28 21:53:58.603549404 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "011_update_indexes"
2025-02-28 21:53:58.603574449 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "event_start_time_end_time" ON "event" ("start_time" DESC, "end_time" DESC)',)
2025-02-28 21:53:58.603677435 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('DROP INDEX recordings_start_time_end_time',)
2025-02-28 21:53:58.603779494 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_end_time_start_time" ON "recordings" ("end_time" DESC, "start_time" DESC)',)
2025-02-28 21:53:58.604035956 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 011_update_indexes
2025-02-28 21:53:58.606168525 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "012_add_segment_size"
2025-02-28 21:53:58.606194639 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('recordings', 'segment_size', <FloatField: Recordings.segment_size>)
2025-02-28 21:53:58.607560287 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 012_add_segment_size
2025-02-28 21:53:58.609039292 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "013_create_timeline_table"
2025-02-28 21:53:58.609065046 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "timeline" ("timestamp" DATETIME NOT NULL, "camera" VARCHAR(20) NOT NULL, "source" VARCHAR(20) NOT NULL, "source_id" VARCHAR(30), "class_type" VARCHAR(50) NOT NULL, "data" JSON)',)
2025-02-28 21:53:58.609176175 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "timeline_camera" ON "timeline" ("camera")',)
2025-02-28 21:53:58.609310809 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "timeline_source" ON "timeline" ("source")',)
2025-02-28 21:53:58.609412244 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "timeline_source_id" ON "timeline" ("source_id")',)
2025-02-28 21:53:58.609672192 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 013_create_timeline_table
2025-02-28 21:53:58.611537526 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "014_event_updates_for_fp"
2025-02-28 21:53:58.611562667 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'score', <FloatField: Event.score>)
2025-02-28 21:53:58.611765430 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'model_hash', <CharField: Event.model_hash>)
2025-02-28 21:53:58.611982216 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'detector_type', <CharField: Event.detector_type>)
2025-02-28 21:53:58.612193684 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'model_type', <CharField: Event.model_type>)
2025-02-28 21:53:58.612367082 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'area')
2025-02-28 21:53:58.613439160 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'false_positive')
2025-02-28 21:53:58.614473219 [2025-02-28 21:53:58] peewee_migrate.logs INFO : apply_default ('event', 'false_positive', <BooleanField: Event.false_positive>)
2025-02-28 21:53:58.614709844 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 014_event_updates_for_fp
2025-02-28 21:53:58.616261592 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "015_event_refactor"
2025-02-28 21:53:58.616307267 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'top_score')
2025-02-28 21:53:58.617415935 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'score')
2025-02-28 21:53:58.618471266 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'region')
2025-02-28 21:53:58.619481190 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'box')
2025-02-28 21:53:58.620465819 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'area')
2025-02-28 21:53:58.621518816 [2025-02-28 21:53:58] peewee_migrate.logs INFO : drop_not_null ('event', 'ratio')
2025-02-28 21:53:58.622547615 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('event', 'data', <JSONField: Event.data>)
2025-02-28 21:53:58.623852725 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 015_event_refactor
2025-02-28 21:53:58.625667638 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "016_sublabel_increase"
2025-02-28 21:53:58.625669512 [2025-02-28 21:53:58] peewee_migrate.logs INFO : change_column ('event', 'sub_label', <CharField: Event.sub_label>)
2025-02-28 21:53:58.626956916 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 016_sublabel_increase
2025-02-28 21:53:58.628602007 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "017_update_indexes"
2025-02-28 21:53:58.628618523 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_camera_segment_size" ON "recordings" ("camera", "segment_size")',)
2025-02-28 21:53:58.628955585 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 017_update_indexes
2025-02-28 21:53:58.630638359 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "018_add_dbfs"
2025-02-28 21:53:58.630656695 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('recordings', 'dBFS', <IntegerField: Recordings.dBFS>)
2025-02-28 21:53:58.631054567 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 018_add_dbfs
2025-02-28 21:53:58.632283011 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "019_create_regions_table"
2025-02-28 21:53:58.632306091 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "regions" ("camera" VARCHAR(20) NOT NULL PRIMARY KEY, "last_update" DATETIME NOT NULL, "grid" JSON)',)
2025-02-28 21:53:58.632804114 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 019_create_regions_table
2025-02-28 21:53:58.634333446 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "020_update_index_recordings"
2025-02-28 21:53:58.634356418 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('DROP INDEX recordings_end_time_start_time',)
2025-02-28 21:53:58.634529323 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_camera_start_time_end_time" ON "recordings" ("camera", "start_time" DESC, "end_time" DESC)',)
2025-02-28 21:53:58.634646411 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_api_recordings_summary" ON "recordings" ("camera", "start_time" DESC, "duration", "motion", "objects")',)
2025-02-28 21:53:58.634764035 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "recordings_start_time" ON "recordings" ("start_time")',)
2025-02-28 21:53:58.635043071 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 020_update_index_recordings
2025-02-28 21:53:58.636595092 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "021_create_previews_table"
2025-02-28 21:53:58.636619315 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "previews" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "camera" VARCHAR(20) NOT NULL, "path" VARCHAR(255) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME NOT NULL, "duration" REAL NOT NULL)',)
2025-02-28 21:53:58.636988552 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 021_create_previews_table
2025-02-28 21:53:58.638674814 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "022_create_review_segment_table"
2025-02-28 21:53:58.638707205 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "reviewsegment" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "camera" VARCHAR(20) NOT NULL, "start_time" DATETIME NOT NULL, "end_time" DATETIME, "has_been_reviewed" INTEGER NOT NULL, "severity" VARCHAR(30) NOT NULL, "thumb_path" VARCHAR(255) NOT NULL, "data" JSON NOT NULL)',)
2025-02-28 21:53:58.638831015 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "review_segment_camera" ON "reviewsegment" ("camera")',)
2025-02-28 21:53:58.638974605 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX "review_segment_start_time_end_time" ON "reviewsegment" ("start_time" DESC, "end_time" DESC)',)
2025-02-28 21:53:58.639255968 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 022_create_review_segment_table
2025-02-28 21:53:58.640953411 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "023_add_regions"
2025-02-28 21:53:58.640980196 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('recordings', 'regions', <IntegerField: Recordings.regions>)
2025-02-28 21:53:58.641327225 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 023_add_regions
2025-02-28 21:53:58.642708093 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "024_create_export_table"
2025-02-28 21:53:58.642740196 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "export" ("id" VARCHAR(30) NOT NULL PRIMARY KEY, "camera" VARCHAR(20) NOT NULL, "name" VARCHAR(100) NOT NULL, "date" DATETIME NOT NULL, "video_path" VARCHAR(255) NOT NULL, "thumb_path" VARCHAR(255) NOT NULL, "in_progress" INTEGER NOT NULL)',)
2025-02-28 21:53:58.642932389 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "export_camera" ON "export" ("camera")',)
2025-02-28 21:53:58.643211294 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 024_create_export_table
2025-02-28 21:53:58.644596939 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "025_create_user_table"
2025-02-28 21:53:58.644633260 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE TABLE IF NOT EXISTS "user" ("username" VARCHAR(30) NOT NULL PRIMARY KEY, "password_hash" VARCHAR(120) NOT NULL)',)
2025-02-28 21:53:58.644971356 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 025_create_user_table
2025-02-28 21:53:58.646483995 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "026_add_notification_tokens"
2025-02-28 21:53:58.646511085 [2025-02-28 21:53:58] peewee_migrate.logs INFO : add_column ('user', 'notification_tokens', <JSONField: User.notification_tokens>)
2025-02-28 21:53:58.647777046 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 026_add_notification_tokens
2025-02-28 21:53:58.649213741 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Migrate "027_create_explore_index"
2025-02-28 21:53:58.649251311 [2025-02-28 21:53:58] peewee_migrate.logs INFO : sql ('CREATE INDEX IF NOT EXISTS "event_label_start_time" ON "event" ("label", "start_time" DESC)',)
2025-02-28 21:53:58.649585310 [2025-02-28 21:53:58] peewee_migrate.logs INFO : Done 027_create_explore_index
2025-02-28 21:53:58.651148931 [2025-02-28 21:53:58] frigate.app INFO : Running database vacuum
2025-02-28 21:53:58.658615949 [2025-02-28 21:53:58] frigate.app INFO : Recording process started: 544
2025-02-28 21:53:58.662675603 [2025-02-28 21:53:58] frigate.app INFO : Review process started: 553
2025-02-28 21:53:58.664452721 [2025-02-28 21:53:58] frigate.app INFO : go2rtc process pid: 98
2025-02-28 21:53:58.672553911 [2025-02-28 21:53:58] detector.cpu INFO : Starting detection process: 560
2025-02-28 21:53:58.678517197 [2025-02-28 21:53:58] frigate.detectors WARNING : CPU detectors are not recommended and should only be used for testing or for trial purposes.
2025-02-28 21:53:58.678684143 [2025-02-28 21:53:58] frigate.app INFO : Output process started: 575
2025-02-28 21:53:58.686035164 [2025-02-28 21:53:58] frigate.app INFO : Camera processor started for name_of_your_camera: 590
2025-02-28 21:53:58.693628032 [2025-02-28 21:53:58] frigate.app INFO : Capture process started for name_of_your_camera: 604
2025-02-28 21:53:58.695849841 2025/02/28 21:53:58 [error] 201#201: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 10.110.0.37, server: , request: "GET /ws HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "10.110.0.1:5000"
2025-02-28 21:53:58.695858459 2025/02/28 21:53:58 [error] 201#201: *4 auth request unexpected status: 502 while sending to client, client: 10.110.0.37, server: , request: "GET /ws HTTP/1.1", host: "10.110.0.1:5000"
2025-02-28 21:53:58.695878603 10.110.0.37 - - [28/Feb/2025:21:53:58 -0600] "GET /ws HTTP/1.1" 500 579 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:53:59.194377652 [2025-02-28 21:53:59] frigate.app INFO : ********************************************************
2025-02-28 21:53:59.209674479 [2025-02-28 21:53:59] frigate.app INFO : ********************************************************
2025-02-28 21:53:59.230469841 [2025-02-28 21:53:59] frigate.app INFO : *** Auth is enabled, but no users exist. ***
2025-02-28 21:53:59.235560406 [2025-02-28 21:53:59] frigate.app INFO : *** Created a default user: ***
2025-02-28 21:53:59.245802802 [2025-02-28 21:53:59] frigate.app INFO : *** User: admin ***
2025-02-28 21:53:59.250945663 [2025-02-28 21:53:59] frigate.app INFO : *** Password: 4047e9f49ea6f4a9df76f5e7d6880c26 ***
2025-02-28 21:53:59.256078959 [2025-02-28 21:53:59] frigate.app INFO : ********************************************************
2025-02-28 21:53:59.261183728 [2025-02-28 21:53:59] frigate.app INFO : ********************************************************
2025-02-28 21:53:59.263074725 [2025-02-28 21:53:59] frigate.api.fastapi_app INFO : Starting FastAPI app
2025-02-28 21:53:59.267959497 [2025-02-28 21:53:59] frigate.api.fastapi_app INFO : FastAPI started
2025-02-28 21:54:03.715502230 [2025-02-28 21:54:03] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:54:03.715571257 [2025-02-28 21:54:03] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:54:06.504315871 [INFO] Starting go2rtc healthcheck service...
2025-02-28 21:54:10.578479220 10.110.0.37 - - [28/Feb/2025:21:54:10 -0600] "GET /api/config HTTP/1.1" 200 10442 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:10.578492662 10.110.0.37 - - [28/Feb/2025:21:54:10 -0600] "GET /api/profile HTTP/1.1" 200 17 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:11.461033369 10.110.0.37 - - [28/Feb/2025:21:54:11 -0600] "GET / HTTP/1.1" 200 2651 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:11.469474560 10.110.0.37 - - [28/Feb/2025:21:54:11 -0600] "GET /ws HTTP/1.1" 101 149 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:11.635545116 10.110.0.37 - - [28/Feb/2025:21:54:11 -0600] "GET /fonts/Inter-Regular.woff2 HTTP/1.1" 200 108488 "http://10.110.0.1:5000/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:11.656336684 10.110.0.37 - - [28/Feb/2025:21:54:11 -0600] "GET /api/config HTTP/1.1" 200 10442 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:11.657064561 10.110.0.37 - - [28/Feb/2025:21:54:11 -0600] "GET /api/profile HTTP/1.1" 200 17 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:13.249786257 10.110.0.37 - - [28/Feb/2025:21:54:13 -0600] "GET / HTTP/1.1" 200 2651 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:13.256515169 10.110.0.37 - - [28/Feb/2025:21:54:13 -0600] "GET /ws HTTP/1.1" 101 149 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:13.368614303 10.110.0.37 - - [28/Feb/2025:21:54:13 -0600] "GET /fonts/Inter-Regular.woff2 HTTP/1.1" 200 108488 "http://10.110.0.1:5000/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:13.377726843 10.110.0.37 - - [28/Feb/2025:21:54:13 -0600] "GET /api/config HTTP/1.1" 200 10442 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:13.379302390 10.110.0.37 - - [28/Feb/2025:21:54:13 -0600] "GET /api/profile HTTP/1.1" 200 17 "http://10.110.0.1:5000/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:15.239171615 10.110.0.37 - - [28/Feb/2025:21:54:15 -0600] "GET /fonts/Inter-SemiBold.woff2 HTTP/1.1" 200 111588 "http://10.110.0.1:5000/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-"
2025-02-28 21:54:18.713815528 [2025-02-28 21:54:18] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:54:18.713883852 [2025-02-28 21:54:18] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:54:18.713940108 [2025-02-28 21:54:18] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x559ba90e23c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:54:18.714004998 [2025-02-28 21:54:18] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x559ba90e0f40] Error opening input: Connection timed out
2025-02-28 21:54:18.714050448 [2025-02-28 21:54:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:54:18.714077516 [2025-02-28 21:54:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:54:23.733911120 [2025-02-28 21:54:23] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:54:23.734437875 [2025-02-28 21:54:23] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:54:28.721055610 [2025-02-28 21:54:28] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:54:28.721264603 [2025-02-28 21:54:28] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:54:28.721432518 [2025-02-28 21:54:28] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55fd17f643c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:54:28.721594185 [2025-02-28 21:54:28] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55fd17f62f40] Error opening input: Connection timed out
2025-02-28 21:54:28.721762688 [2025-02-28 21:54:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:54:28.721921691 [2025-02-28 21:54:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:54:33.757131586 [2025-02-28 21:54:33] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:54:33.757419108 [2025-02-28 21:54:33] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:54:38.742576092 [2025-02-28 21:54:38] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:54:38.742628544 [2025-02-28 21:54:38] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:54:38.742658746 [2025-02-28 21:54:38] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x56065fc403c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:54:38.742713091 [2025-02-28 21:54:38] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x56065fc3ef40] Error opening input: Connection timed out
2025-02-28 21:54:38.742757016 [2025-02-28 21:54:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:54:38.742803648 [2025-02-28 21:54:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:54:43.767340101 [2025-02-28 21:54:43] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:54:43.767377267 [2025-02-28 21:54:43] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:54:48.754966623 [2025-02-28 21:54:48] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:54:48.755094343 [2025-02-28 21:54:48] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:54:48.755201569 [2025-02-28 21:54:48] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x563bcb0ae3c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:54:48.755300628 [2025-02-28 21:54:48] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x563bcb0acf40] Error opening input: Connection timed out
2025-02-28 21:54:48.755397210 [2025-02-28 21:54:48] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:54:48.755491253 [2025-02-28 21:54:48] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:54:53.789090552 [2025-02-28 21:54:53] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:54:53.789482522 [2025-02-28 21:54:53] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:54:57.025060473 127.0.0.1 - - [28/Feb/2025:21:54:57 -0600] "" 400 0 "-" "-" "-"
2025-02-28 21:54:58.781771713 [2025-02-28 21:54:58] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:54:58.781809012 [2025-02-28 21:54:58] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:54:58.781873053 [2025-02-28 21:54:58] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55e1f43c43c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:54:58.781874901 [2025-02-28 21:54:58] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55e1f43c2f40] Error opening input: Connection timed out
2025-02-28 21:54:58.781898795 [2025-02-28 21:54:58] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:54:58.781952543 [2025-02-28 21:54:58] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:03.797681847 [2025-02-28 21:55:03] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:03.797796907 [2025-02-28 21:55:03] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:08.786872942 [2025-02-28 21:55:08] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:08.787012470 [2025-02-28 21:55:08] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:08.787190856 [2025-02-28 21:55:08] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55ce58c0e3c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:08.787237669 [2025-02-28 21:55:08] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55ce58c0cf40] Error opening input: Connection timed out
2025-02-28 21:55:08.787353134 [2025-02-28 21:55:08] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:08.787447058 [2025-02-28 21:55:08] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:13.814033695 [2025-02-28 21:55:13] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:13.814179524 [2025-02-28 21:55:13] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:18.805304511 [2025-02-28 21:55:18] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:18.805307414 [2025-02-28 21:55:18] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:18.805315934 [2025-02-28 21:55:18] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x56420788d3c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:18.805376335 [2025-02-28 21:55:18] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x56420788bf40] Error opening input: Connection timed out
2025-02-28 21:55:18.805394825 [2025-02-28 21:55:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:18.805400569 [2025-02-28 21:55:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:23.824865787 [2025-02-28 21:55:23] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:23.825357895 [2025-02-28 21:55:23] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:28.818475089 [2025-02-28 21:55:28] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:28.818496999 [2025-02-28 21:55:28] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:28.818518574 [2025-02-28 21:55:28] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x5637310223c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:28.818580151 [2025-02-28 21:55:28] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x563731020f40] Error opening input: Connection timed out
2025-02-28 21:55:28.818581954 [2025-02-28 21:55:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:28.818594868 [2025-02-28 21:55:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:33.837639237 [2025-02-28 21:55:33] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:33.838055356 [2025-02-28 21:55:33] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:38.838181676 [2025-02-28 21:55:38] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:38.838376558 [2025-02-28 21:55:38] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:38.838441328 [2025-02-28 21:55:38] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55c8d04e93c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:38.838561666 [2025-02-28 21:55:38] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55c8d04e7f40] Error opening input: Connection timed out
2025-02-28 21:55:38.838668910 [2025-02-28 21:55:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:38.838773159 [2025-02-28 21:55:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:43.861414016 [2025-02-28 21:55:43] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:43.861763803 [2025-02-28 21:55:43] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:48.845393500 [2025-02-28 21:55:48] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:48.845396500 [2025-02-28 21:55:48] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:48.845416838 [2025-02-28 21:55:48] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x56292090a3c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:48.845471580 [2025-02-28 21:55:48] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x562920908f40] Error opening input: Connection timed out
2025-02-28 21:55:48.845473404 [2025-02-28 21:55:48] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:48.845474569 [2025-02-28 21:55:48] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:55:53.867233190 [2025-02-28 21:55:53] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:55:53.867236097 [2025-02-28 21:55:53] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:55:57.041624559 127.0.0.1 - - [28/Feb/2025:21:55:57 -0600] "" 400 0 "-" "-" "-"
2025-02-28 21:55:58.856034094 [2025-02-28 21:55:58] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:55:58.856195786 [2025-02-28 21:55:58] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:55:58.856272262 [2025-02-28 21:55:58] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x56097d5443c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:55:58.856388075 [2025-02-28 21:55:58] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x56097d542f40] Error opening input: Connection timed out
2025-02-28 21:55:58.863660520 [2025-02-28 21:55:58] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:55:58.863662278 [2025-02-28 21:55:58] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:56:03.885722640 [2025-02-28 21:56:03] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:56:03.885725649 [2025-02-28 21:56:03] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:56:08.869217422 [2025-02-28 21:56:08] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:56:08.869442282 [2025-02-28 21:56:08] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:56:08.869649267 [2025-02-28 21:56:08] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x555fdb6073c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:56:08.869831576 [2025-02-28 21:56:08] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x555fdb605f40] Error opening input: Connection timed out
2025-02-28 21:56:08.869915312 [2025-02-28 21:56:08] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:56:08.870111556 [2025-02-28 21:56:08] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:56:13.891954222 [2025-02-28 21:56:13] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:56:13.891956961 [2025-02-28 21:56:13] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:56:18.880398401 [2025-02-28 21:56:18] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:56:18.880570122 [2025-02-28 21:56:18] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:56:18.880852024 [2025-02-28 21:56:18] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55a3b4db93c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:56:18.881055751 [2025-02-28 21:56:18] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55a3b4db7f40] Error opening input: Connection timed out
2025-02-28 21:56:18.881232869 [2025-02-28 21:56:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:56:18.881385784 [2025-02-28 21:56:18] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:56:23.907965918 [2025-02-28 21:56:23] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:56:23.908307674 [2025-02-28 21:56:23] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:56:28.893320593 [2025-02-28 21:56:28] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:56:28.893556505 [2025-02-28 21:56:28] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:56:28.893759033 [2025-02-28 21:56:28] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x55a05c4f23c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:56:28.893918005 [2025-02-28 21:56:28] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x55a05c4f0f40] Error opening input: Connection timed out
2025-02-28 21:56:28.894020428 [2025-02-28 21:56:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:56:28.894156045 [2025-02-28 21:56:28] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:56:33.917538868 [2025-02-28 21:56:33] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:56:33.917880792 [2025-02-28 21:56:33] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-02-28 21:56:38.904175638 [2025-02-28 21:56:38] watchdog.name_of_your_camera ERROR : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-02-28 21:56:38.904396960 [2025-02-28 21:56:38] watchdog.name_of_your_camera ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2025-02-28 21:56:38.904580607 [2025-02-28 21:56:38] ffmpeg.name_of_your_camera.detect ERROR : [tcp @ 0x5578806a73c0] Connection to tcp://10.0.10.10:554?timeout=5000000 failed: Connection timed out
2025-02-28 21:56:38.904790872 [2025-02-28 21:56:38] ffmpeg.name_of_your_camera.detect ERROR : [in#0 @ 0x5578806a5f40] Error opening input: Connection timed out
2025-02-28 21:56:38.904905057 [2025-02-28 21:56:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input file rtsp://10.0.10.10:554/rtsp.
2025-02-28 21:56:38.905053281 [2025-02-28 21:56:38] ffmpeg.name_of_your_camera.detect ERROR : Error opening input files: Connection timed out
2025-02-28 21:56:43.929502545 [2025-02-28 21:56:43] frigate.video ERROR : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-02-28 21:56:43.929505669 [2025-02-28 21:56:43] frigate.video ERROR : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment