Remove repeated apple tag

This commit is contained in:
Nicolas Mowen 2025-03-15 09:39:14 -06:00
parent 1a0e0f7eb3
commit 83a292f31f

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}"])