Remove ffmpeg banner (#6600)

* Hide banner in maintainer

* Hide banner in event download
This commit is contained in:
Nicolas Mowen 2023-06-01 04:46:34 -06:00 committed by GitHub
parent ae0aba44dc
commit 62f36b221e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -1347,6 +1347,7 @@ def recording_clip(camera_name, start_ts, end_ts):
if not os.path.exists(path): if not os.path.exists(path):
ffmpeg_cmd = [ ffmpeg_cmd = [
"ffmpeg", "ffmpeg",
"-hide_banner",
"-y", "-y",
"-protocol_whitelist", "-protocol_whitelist",
"pipe,file", "pipe,file",

View File

@ -296,6 +296,7 @@ class RecordingMaintainer(threading.Thread):
# add faststart to kept segments to improve metadata reading # add faststart to kept segments to improve metadata reading
ffmpeg_cmd = [ ffmpeg_cmd = [
"ffmpeg", "ffmpeg",
"-hide_banner",
"-y", "-y",
"-i", "-i",
cache_path, cache_path,