Increase download output

This commit is contained in:
Nicolas Mowen 2024-10-22 19:06:34 -06:00
parent d715a8c290
commit a3f4c5b182

View File

@ -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: