forked from Github/frigate
initial commit
This commit is contained in:
committed by
Blake Blackshear
parent
dc759a3e56
commit
a476bc9885
@@ -1,20 +1,14 @@
|
||||
import datetime
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import queue
|
||||
import subprocess as sp
|
||||
import threading
|
||||
import time
|
||||
from collections import defaultdict
|
||||
from pathlib import Path
|
||||
|
||||
import psutil
|
||||
import shutil
|
||||
|
||||
from frigate.config import FrigateConfig
|
||||
from frigate.const import RECORD_DIR, CLIPS_DIR, CACHE_DIR
|
||||
from frigate.models import Event
|
||||
from frigate.config import FrigateConfig, RecordConfig
|
||||
from frigate.const import CLIPS_DIR
|
||||
from frigate.models import Event, Recordings
|
||||
|
||||
from peewee import fn
|
||||
|
||||
@@ -39,8 +33,16 @@ class EventProcessor(threading.Thread):
|
||||
if event_data["false_positive"]:
|
||||
return False
|
||||
|
||||
# if there are required zones and there is no overlap
|
||||
required_zones = self.config.cameras[camera].clips.required_zones
|
||||
record_config: RecordConfig = self.config.cameras[camera].record
|
||||
|
||||
# Recording clips is disabled
|
||||
if not record_config.enabled or (
|
||||
record_config.retain_days == 0 and not record_config.events.enabled
|
||||
):
|
||||
return False
|
||||
|
||||
# If there are required zones and there is no overlap
|
||||
required_zones = record_config.events.required_zones
|
||||
if len(required_zones) > 0 and not set(event_data["entered_zones"]) & set(
|
||||
required_zones
|
||||
):
|
||||
@@ -49,208 +51,65 @@ class EventProcessor(threading.Thread):
|
||||
)
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def refresh_cache(self):
|
||||
cached_files = os.listdir(CACHE_DIR)
|
||||
|
||||
files_in_use = []
|
||||
for process in psutil.process_iter():
|
||||
try:
|
||||
if process.name() != "ffmpeg":
|
||||
continue
|
||||
|
||||
flist = process.open_files()
|
||||
if flist:
|
||||
for nt in flist:
|
||||
if nt.path.startswith(CACHE_DIR):
|
||||
files_in_use.append(nt.path.split("/")[-1])
|
||||
except:
|
||||
continue
|
||||
|
||||
for f in cached_files:
|
||||
if f in files_in_use or f in self.cached_clips:
|
||||
continue
|
||||
|
||||
basename = os.path.splitext(f)[0]
|
||||
camera, date = basename.rsplit("-", maxsplit=1)
|
||||
start_time = datetime.datetime.strptime(date, "%Y%m%d%H%M%S")
|
||||
|
||||
ffprobe_cmd = [
|
||||
"ffprobe",
|
||||
"-v",
|
||||
"error",
|
||||
"-show_entries",
|
||||
"format=duration",
|
||||
"-of",
|
||||
"default=noprint_wrappers=1:nokey=1",
|
||||
f"{os.path.join(CACHE_DIR, f)}",
|
||||
]
|
||||
p = sp.run(ffprobe_cmd, capture_output=True)
|
||||
if p.returncode == 0:
|
||||
duration = float(p.stdout.decode().strip())
|
||||
else:
|
||||
logger.info(f"bad file: {f}")
|
||||
os.remove(os.path.join(CACHE_DIR, f))
|
||||
continue
|
||||
|
||||
self.cached_clips[f] = {
|
||||
"path": f,
|
||||
"camera": camera,
|
||||
"start_time": start_time.timestamp(),
|
||||
"duration": duration,
|
||||
}
|
||||
|
||||
if len(self.events_in_process) > 0:
|
||||
earliest_event = min(
|
||||
self.events_in_process.values(), key=lambda x: x["start_time"]
|
||||
)["start_time"]
|
||||
else:
|
||||
earliest_event = datetime.datetime.now().timestamp()
|
||||
|
||||
# if the earliest event is more tha max seconds ago, cap it
|
||||
max_seconds = self.config.clips.max_seconds
|
||||
earliest_event = max(
|
||||
earliest_event,
|
||||
datetime.datetime.now().timestamp() - self.config.clips.max_seconds,
|
||||
)
|
||||
|
||||
for f, data in list(self.cached_clips.items()):
|
||||
if earliest_event - 90 > data["start_time"] + data["duration"]:
|
||||
del self.cached_clips[f]
|
||||
logger.debug(f"Cleaning up cached file {f}")
|
||||
os.remove(os.path.join(CACHE_DIR, f))
|
||||
|
||||
# if we are still using more than 90% of the cache, proactively cleanup
|
||||
cache_usage = shutil.disk_usage("/tmp/cache")
|
||||
while (
|
||||
cache_usage.used / cache_usage.total > 0.9
|
||||
and cache_usage.free < 200000000
|
||||
and len(self.cached_clips) > 0
|
||||
# If the required objects are not present
|
||||
if (
|
||||
record_config.events.objects is not None
|
||||
and event_data["label"] not in record_config.events.objects
|
||||
):
|
||||
logger.warning("More than 90% of the cache is used.")
|
||||
logger.warning(
|
||||
"Consider increasing space available at /tmp/cache or reducing max_seconds in your clips config."
|
||||
logger.debug(
|
||||
f"Not creating clip for {event_data['id']} because it did not contain required objects"
|
||||
)
|
||||
logger.warning("Proactively cleaning up the cache...")
|
||||
oldest_clip = min(self.cached_clips.values(), key=lambda x: x["start_time"])
|
||||
del self.cached_clips[oldest_clip["path"]]
|
||||
os.remove(os.path.join(CACHE_DIR, oldest_clip["path"]))
|
||||
cache_usage = shutil.disk_usage("/tmp/cache")
|
||||
|
||||
def create_clip(self, camera, event_data, pre_capture, post_capture):
|
||||
# get all clips from the camera with the event sorted
|
||||
sorted_clips = sorted(
|
||||
[c for c in self.cached_clips.values() if c["camera"] == camera],
|
||||
key=lambda i: i["start_time"],
|
||||
)
|
||||
|
||||
# if there are no clips in the cache or we are still waiting on a needed file check every 5 seconds
|
||||
wait_count = 0
|
||||
while (
|
||||
len(sorted_clips) == 0
|
||||
or sorted_clips[-1]["start_time"] + sorted_clips[-1]["duration"]
|
||||
< event_data["end_time"] + post_capture
|
||||
):
|
||||
if wait_count > 4:
|
||||
logger.warning(
|
||||
f"Unable to create clip for {camera} and event {event_data['id']}. There were no cache files for this event."
|
||||
)
|
||||
return False
|
||||
logger.debug(f"No cache clips for {camera}. Waiting...")
|
||||
time.sleep(5)
|
||||
self.refresh_cache()
|
||||
# get all clips from the camera with the event sorted
|
||||
sorted_clips = sorted(
|
||||
[c for c in self.cached_clips.values() if c["camera"] == camera],
|
||||
key=lambda i: i["start_time"],
|
||||
)
|
||||
wait_count += 1
|
||||
|
||||
playlist_start = event_data["start_time"] - pre_capture
|
||||
playlist_end = event_data["end_time"] + post_capture
|
||||
playlist_lines = []
|
||||
for clip in sorted_clips:
|
||||
# clip ends before playlist start time, skip
|
||||
if clip["start_time"] + clip["duration"] < playlist_start:
|
||||
continue
|
||||
# clip starts after playlist ends, finish
|
||||
if clip["start_time"] > playlist_end:
|
||||
break
|
||||
playlist_lines.append(f"file '{os.path.join(CACHE_DIR,clip['path'])}'")
|
||||
# if this is the starting clip, add an inpoint
|
||||
if clip["start_time"] < playlist_start:
|
||||
playlist_lines.append(
|
||||
f"inpoint {int(playlist_start-clip['start_time'])}"
|
||||
)
|
||||
# if this is the ending clip, add an outpoint
|
||||
if clip["start_time"] + clip["duration"] > playlist_end:
|
||||
playlist_lines.append(
|
||||
f"outpoint {int(playlist_end-clip['start_time'])}"
|
||||
)
|
||||
|
||||
clip_name = f"{camera}-{event_data['id']}"
|
||||
ffmpeg_cmd = [
|
||||
"ffmpeg",
|
||||
"-y",
|
||||
"-protocol_whitelist",
|
||||
"pipe,file",
|
||||
"-f",
|
||||
"concat",
|
||||
"-safe",
|
||||
"0",
|
||||
"-i",
|
||||
"-",
|
||||
"-c",
|
||||
"copy",
|
||||
"-movflags",
|
||||
"+faststart",
|
||||
f"{os.path.join(CLIPS_DIR, clip_name)}.mp4",
|
||||
]
|
||||
|
||||
p = sp.run(
|
||||
ffmpeg_cmd,
|
||||
input="\n".join(playlist_lines),
|
||||
encoding="ascii",
|
||||
capture_output=True,
|
||||
)
|
||||
if p.returncode != 0:
|
||||
logger.error(p.stderr)
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def verify_clip(self, camera, end_time):
|
||||
# check every 5 seconds for the last required recording
|
||||
for _ in range(4):
|
||||
recordings_count = (
|
||||
Recordings.select()
|
||||
.where(Recordings.camera == camera, Recordings.end_time > end_time)
|
||||
.limit(1)
|
||||
.count()
|
||||
)
|
||||
if recordings_count > 0:
|
||||
return True
|
||||
logger.debug(f"Missing recording for {camera} clip. Waiting...")
|
||||
time.sleep(5)
|
||||
|
||||
logger.warning(
|
||||
f"Unable to verify clip for {camera}. There were no recordings for this camera."
|
||||
)
|
||||
return False
|
||||
|
||||
def run(self):
|
||||
while not self.stop_event.is_set():
|
||||
try:
|
||||
event_type, camera, event_data = self.event_queue.get(timeout=10)
|
||||
except queue.Empty:
|
||||
if not self.stop_event.is_set():
|
||||
self.refresh_cache()
|
||||
# if not self.stop_event.is_set():
|
||||
# self.refresh_cache()
|
||||
continue
|
||||
|
||||
logger.debug(f"Event received: {event_type} {camera} {event_data['id']}")
|
||||
self.refresh_cache()
|
||||
# self.refresh_cache()
|
||||
|
||||
if event_type == "start":
|
||||
self.events_in_process[event_data["id"]] = event_data
|
||||
|
||||
if event_type == "end":
|
||||
clips_config = self.config.cameras[camera].clips
|
||||
record_config: RecordConfig = self.config.cameras[camera].record
|
||||
|
||||
clip_created = False
|
||||
if self.should_create_clip(camera, event_data):
|
||||
if clips_config.enabled and (
|
||||
clips_config.objects is None
|
||||
or event_data["label"] in clips_config.objects
|
||||
):
|
||||
clip_created = self.create_clip(
|
||||
camera,
|
||||
event_data,
|
||||
clips_config.pre_capture,
|
||||
clips_config.post_capture,
|
||||
)
|
||||
has_clip = self.should_create_clip(camera, event_data)
|
||||
|
||||
if clip_created or event_data["has_snapshot"]:
|
||||
# Wait for recordings to be ready
|
||||
if has_clip:
|
||||
has_clip = self.verify_clip(
|
||||
camera,
|
||||
event_data["end_time"] + record_config.events.post_capture,
|
||||
)
|
||||
|
||||
if has_clip or event_data["has_snapshot"]:
|
||||
Event.create(
|
||||
id=event_data["id"],
|
||||
label=event_data["label"],
|
||||
@@ -261,11 +120,12 @@ class EventProcessor(threading.Thread):
|
||||
false_positive=event_data["false_positive"],
|
||||
zones=list(event_data["entered_zones"]),
|
||||
thumbnail=event_data["thumbnail"],
|
||||
has_clip=clip_created,
|
||||
has_clip=has_clip,
|
||||
has_snapshot=event_data["has_snapshot"],
|
||||
)
|
||||
|
||||
del self.events_in_process[event_data["id"]]
|
||||
self.event_processed_queue.put((event_data["id"], camera, clip_created))
|
||||
self.event_processed_queue.put((event_data["id"], camera, has_clip))
|
||||
|
||||
logger.info(f"Exiting event processor...")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user