From 5e0c55148eb6013e43f75e579671ddf3e9b07905 Mon Sep 17 00:00:00 2001 From: nulledy <254504350+nulledy@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:03:20 +0000 Subject: [PATCH] formatting --- frigate/output/preview.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frigate/output/preview.py b/frigate/output/preview.py index 7ace49691..22d5f8fe9 100644 --- a/frigate/output/preview.py +++ b/frigate/output/preview.py @@ -50,11 +50,11 @@ PREVIEW_QUALITY_BIT_RATES = { # the -qmax param for ffmpeg prevents the encoder from overly compressing frames while still trying to hit the bitrate target # lower values are higher quality. This is especially important for iniitial frames in the segment PREVIEW_QMAX_PARAM = { - RecordQualityEnum.very_low: '', - RecordQualityEnum.low: '', - RecordQualityEnum.medium: '', - RecordQualityEnum.high: '-qmax 25', - RecordQualityEnum.very_high: '-qmax 25', + RecordQualityEnum.very_low: "", + RecordQualityEnum.low: "", + RecordQualityEnum.medium: "", + RecordQualityEnum.high: "-qmax 25", + RecordQualityEnum.very_high: "-qmax 25", }