mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-19 23:08:08 +02:00
* Enable event snapshot API to honour query params * fix unused imports * Fixes * Run ruff check --fix * Web changes * Further config and web fixes * Further docs tweak * Fix missing quality default in MediaEventsSnapshotQueryParams * Manual events: don't save annotated jpeg; store frame time * Remove unnecessary grayscale helper * Add caveat to docs on snapshot_frame_time pre-0.18 * JPG snapshot should not be treated as clean * Ensure tracked details uses uncropped, bbox'd snapshot * Ensure all UI pages / menu actions use uncropped, bbox'd * web lint * Add missed config helper text * Expect SnapshotsConfig not Any * docs: Remove pre-0.18 note * Specify timestamp=0 in the UI * Move tests out of http media * Correct missed settings.json wording Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Revert to default None for quality * Correct camera snapshot config wording Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Fix quality=0 handling Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Fix quality=0 handling #2 Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * ReRun generate_config_translations --------- Co-authored-by: leccelecce <example@example.com> Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
from enum import Enum
|
|
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Extension(str, Enum):
|
|
webp = "webp"
|
|
png = "png"
|
|
jpg = "jpg"
|
|
jpeg = "jpeg"
|
|
|
|
def get_mime_type(self) -> str:
|
|
if self in (Extension.jpg, Extension.jpeg):
|
|
return "image/jpeg"
|
|
return f"image/{self.value}"
|
|
|
|
|
|
class MediaLatestFrameQueryParams(BaseModel):
|
|
bbox: Optional[int] = None
|
|
timestamp: Optional[int] = None
|
|
zones: Optional[int] = None
|
|
mask: Optional[int] = None
|
|
motion: Optional[int] = None
|
|
paths: Optional[int] = None
|
|
regions: Optional[int] = None
|
|
quality: Optional[int] = 70
|
|
height: Optional[int] = None
|
|
store: Optional[int] = None
|
|
|
|
|
|
class MediaEventsSnapshotQueryParams(BaseModel):
|
|
download: Optional[bool] = False
|
|
timestamp: Optional[int] = None
|
|
bbox: Optional[int] = None
|
|
crop: Optional[int] = None
|
|
height: Optional[int] = None
|
|
quality: Optional[int] = None
|
|
|
|
|
|
class MediaMjpegFeedQueryParams(BaseModel):
|
|
fps: int = 3
|
|
height: int = 360
|
|
bbox: Optional[int] = None
|
|
timestamp: Optional[int] = None
|
|
zones: Optional[int] = None
|
|
mask: Optional[int] = None
|
|
motion: Optional[int] = None
|
|
regions: Optional[int] = None
|