mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-19 23:08:08 +02:00
* backend * frontend + i18n * tests + api spec * tweak backend to use Job infrastructure for exports * frontend tweaks and Job infrastructure * tests * tweaks - add ability to remove from case - change location of counts in case card * add stale export reaper on startup * fix toaster close button color * improve add dialog * formatting * hide max_concurrent from camera config export settings * remove border * refactor batch endpoint for multiple review items * frontend * tests and fastapi spec * fix deletion of in-progress exports in a case * tweaks - hide cases when filtering cameras that have no exports from those cameras - remove description from case card - use textarea instead of input for case description in add new case dialog * add auth exceptions for exports * add e2e test for deleting cases with exports * refactor delete and case endpoints allow bulk deleting and reassigning * frontend - bulk selection like Review - gate admin-only actions - consolidate dialogs - spacing/padding tweaks * i18n and tests * update openapi spec * tweaks - add None to case selection list - allow new case creation from single cam export dialog * fix codeql * fix i18n * remove unused * fix frontend tests
168 lines
5.4 KiB
Python
168 lines
5.4 KiB
Python
from enum import Enum
|
|
from typing import Optional, Union
|
|
|
|
from pydantic import Field
|
|
|
|
from frigate.const import MAX_PRE_CAPTURE
|
|
from frigate.review.types import SeverityEnum
|
|
|
|
from ..base import FrigateBaseModel
|
|
|
|
__all__ = [
|
|
"RecordConfig",
|
|
"RecordExportConfig",
|
|
"RecordPreviewConfig",
|
|
"RecordQualityEnum",
|
|
"EventsConfig",
|
|
"ReviewRetainConfig",
|
|
"RecordRetainConfig",
|
|
"RetainModeEnum",
|
|
]
|
|
|
|
|
|
class RecordRetainConfig(FrigateBaseModel):
|
|
days: float = Field(
|
|
default=0,
|
|
ge=0,
|
|
title="Retention days",
|
|
description="Days to retain recordings.",
|
|
)
|
|
|
|
|
|
class RetainModeEnum(str, Enum):
|
|
all = "all"
|
|
motion = "motion"
|
|
active_objects = "active_objects"
|
|
|
|
|
|
class ReviewRetainConfig(FrigateBaseModel):
|
|
days: float = Field(
|
|
default=10,
|
|
ge=0,
|
|
title="Retention days",
|
|
description="Number of days to retain recordings of detection events.",
|
|
)
|
|
mode: RetainModeEnum = Field(
|
|
default=RetainModeEnum.motion,
|
|
title="Retention mode",
|
|
description="Mode for retention: all (save all segments), motion (save segments with motion), or active_objects (save segments with active objects).",
|
|
)
|
|
|
|
|
|
class EventsConfig(FrigateBaseModel):
|
|
pre_capture: int = Field(
|
|
default=5,
|
|
title="Pre-capture seconds",
|
|
description="Number of seconds before the detection event to include in the recording.",
|
|
le=MAX_PRE_CAPTURE,
|
|
ge=0,
|
|
)
|
|
post_capture: int = Field(
|
|
default=5,
|
|
ge=0,
|
|
title="Post-capture seconds",
|
|
description="Number of seconds after the detection event to include in the recording.",
|
|
)
|
|
retain: ReviewRetainConfig = Field(
|
|
default_factory=ReviewRetainConfig,
|
|
title="Event retention",
|
|
description="Retention settings for recordings of detection events.",
|
|
)
|
|
|
|
|
|
class RecordQualityEnum(str, Enum):
|
|
very_low = "very_low"
|
|
low = "low"
|
|
medium = "medium"
|
|
high = "high"
|
|
very_high = "very_high"
|
|
|
|
|
|
class RecordPreviewConfig(FrigateBaseModel):
|
|
quality: RecordQualityEnum = Field(
|
|
default=RecordQualityEnum.medium,
|
|
title="Preview quality",
|
|
description="Preview quality level (very_low, low, medium, high, very_high).",
|
|
)
|
|
|
|
|
|
class RecordExportConfig(FrigateBaseModel):
|
|
hwaccel_args: Union[str, list[str]] = Field(
|
|
default="auto",
|
|
title="Export hwaccel args",
|
|
description="Hardware acceleration args to use for export/transcode operations.",
|
|
)
|
|
max_concurrent: int = Field(
|
|
default=3,
|
|
ge=1,
|
|
title="Maximum concurrent exports",
|
|
description="Maximum number of export jobs to process at the same time.",
|
|
)
|
|
|
|
|
|
class RecordConfig(FrigateBaseModel):
|
|
enabled: bool = Field(
|
|
default=False,
|
|
title="Enable recording",
|
|
description="Enable or disable recording for all cameras; can be overridden per-camera.",
|
|
)
|
|
expire_interval: int = Field(
|
|
default=60,
|
|
title="Record cleanup interval",
|
|
description="Minutes between cleanup passes that remove expired recording segments.",
|
|
)
|
|
continuous: RecordRetainConfig = Field(
|
|
default_factory=RecordRetainConfig,
|
|
title="Continuous retention",
|
|
description="Number of days to retain recordings regardless of tracked objects or motion. Set to 0 if you only want to retain recordings of alerts and detections.",
|
|
)
|
|
motion: RecordRetainConfig = Field(
|
|
default_factory=RecordRetainConfig,
|
|
title="Motion retention",
|
|
description="Number of days to retain recordings triggered by motion regardless of tracked objects. Set to 0 if you only want to retain recordings of alerts and detections.",
|
|
)
|
|
detections: EventsConfig = Field(
|
|
default_factory=EventsConfig,
|
|
title="Detection retention",
|
|
description="Recording retention settings for detection events including pre/post capture durations.",
|
|
)
|
|
alerts: EventsConfig = Field(
|
|
default_factory=EventsConfig,
|
|
title="Alert retention",
|
|
description="Recording retention settings for alert events including pre/post capture durations.",
|
|
)
|
|
export: RecordExportConfig = Field(
|
|
default_factory=RecordExportConfig,
|
|
title="Export config",
|
|
description="Settings used when exporting recordings such as timelapse and hardware acceleration.",
|
|
)
|
|
preview: RecordPreviewConfig = Field(
|
|
default_factory=RecordPreviewConfig,
|
|
title="Preview config",
|
|
description="Settings controlling the quality of recording previews shown in the UI.",
|
|
)
|
|
enabled_in_config: Optional[bool] = Field(
|
|
default=None,
|
|
title="Original recording state",
|
|
description="Indicates whether recording was enabled in the original static configuration.",
|
|
)
|
|
|
|
@property
|
|
def event_pre_capture(self) -> int:
|
|
return max(
|
|
self.alerts.pre_capture,
|
|
self.detections.pre_capture,
|
|
)
|
|
|
|
def get_review_pre_capture(self, severity: SeverityEnum) -> int:
|
|
if severity == SeverityEnum.alert:
|
|
return self.alerts.pre_capture
|
|
else:
|
|
return self.detections.pre_capture
|
|
|
|
def get_review_post_capture(self, severity: SeverityEnum) -> int:
|
|
if severity == SeverityEnum.alert:
|
|
return self.alerts.post_capture
|
|
else:
|
|
return self.detections.post_capture
|