Increase download output (#14523)

This commit is contained in:
Nicolas Mowen
2024-10-22 20:33:41 -06:00
committed by GitHub
parent d715a8c290
commit e4048be088

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: