Skip to content

Commit

Permalink
Increase download output (#14523)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 authored Oct 23, 2024
1 parent d715a8c commit e4048be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frigate/api/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def run_download(ffmpeg_cmd: list[str], file_path: str):
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:
Expand Down

0 comments on commit e4048be

Please sign in to comment.