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,