From a3f4c5b182034a936f00462cb9d5eb7bc87f671f Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 22 Oct 2024 19:06:34 -0600 Subject: [PATCH] Increase download output --- frigate/api/media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/media.py b/frigate/api/media.py index d6f6304df..9dc3411d9 100644 --- a/frigate/api/media.py +++ b/frigate/api/media.py @@ -460,7 +460,7 @@ def recording_clip( text=False, ) as ffmpeg: while True: - data = ffmpeg.stdout.read(1024) + data = ffmpeg.stdout.read(8192) if data is not None and len(data) > 0: yield data else: