From 62f36b221e65a1eecf58174b82fd7bb095d07099 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 1 Jun 2023 04:46:34 -0600 Subject: [PATCH] Remove ffmpeg banner (#6600) * Hide banner in maintainer * Hide banner in event download --- frigate/http.py | 1 + frigate/record/maintainer.py | 1 + 2 files changed, 2 insertions(+) diff --git a/frigate/http.py b/frigate/http.py index 9d7aa2c47..b94637976 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1347,6 +1347,7 @@ def recording_clip(camera_name, start_ts, end_ts): if not os.path.exists(path): ffmpeg_cmd = [ "ffmpeg", + "-hide_banner", "-y", "-protocol_whitelist", "pipe,file", diff --git a/frigate/record/maintainer.py b/frigate/record/maintainer.py index afcd6af28..079c4ffa9 100644 --- a/frigate/record/maintainer.py +++ b/frigate/record/maintainer.py @@ -296,6 +296,7 @@ class RecordingMaintainer(threading.Thread): # add faststart to kept segments to improve metadata reading ffmpeg_cmd = [ "ffmpeg", + "-hide_banner", "-y", "-i", cache_path,