From c39e63357b0e8fb20be263b0d1cd0c929a5ac4c3 Mon Sep 17 00:00:00 2001 From: Andrew Roberts Date: Mon, 28 Oct 2024 00:01:44 -0400 Subject: [PATCH] added hwaccel_args to camera.record.export config struct --- frigate/config/camera/record.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frigate/config/camera/record.py b/frigate/config/camera/record.py index 09a7a84d5..e111193c8 100644 --- a/frigate/config/camera/record.py +++ b/frigate/config/camera/record.py @@ -70,6 +70,9 @@ class RecordExportConfig(FrigateBaseModel): timelapse_args: str = Field( default=DEFAULT_TIME_LAPSE_FFMPEG_ARGS, title="Timelapse Args" ) + hwaccel_args: Union[str, list[str]] = Field( + default="auto", title="Export-specific FFmpeg hardware acceleration arguments." + ) class RecordConfig(FrigateBaseModel):