Fix model errors (#17171)

This commit is contained in:
Nicolas Mowen
2025-03-16 05:01:15 -06:00
committed by GitHub
parent d87268acfe
commit db541abed4
5 changed files with 22 additions and 8 deletions

View File

@@ -19,7 +19,6 @@ from frigate.const import (
CACHE_DIR,
CLIPS_DIR,
EXPORT_DIR,
FFMPEG_HVC1_ARGS,
MAX_PLAYLIST_SECONDS,
PREVIEW_FRAME_TYPE,
)
@@ -233,9 +232,6 @@ class RecordingExporter(threading.Thread):
)
).split(" ")
if self.config.ffmpeg.apple_compatibility:
ffmpeg_cmd += FFMPEG_HVC1_ARGS
# add metadata
title = f"Frigate Recording for {self.camera}, {self.get_datetime_from_timestamp(self.start_time)} - {self.get_datetime_from_timestamp(self.end_time)}"
ffmpeg_cmd.extend(["-metadata", f"title={title}"])