From e4048be0883e6659c1e9f791308861d890b1ecba Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 22 Oct 2024 20:33:41 -0600 Subject: [PATCH] Increase download output (#14523) --- 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: