Silence aria2c when downloading segmented streams

It conflicts with the TQDM progress bar, it's also not really useful information.
This commit is contained in:
rlaphoenix 2023-02-22 03:06:53 +00:00
parent 4406e3bbab
commit f21aa5aac5
2 changed files with 4 additions and 2 deletions

View File

@ -460,7 +460,8 @@ class DASH:
segment_save_path,
session.headers,
proxy,
byte_range=segment_range
byte_range=segment_range,
silent=True
))
if isinstance(track, Audio) or init_data:

View File

@ -272,7 +272,8 @@ class HLS:
segment.uri,
segment_save_path,
session.headers,
proxy
proxy,
silent=True
))
if isinstance(track, Audio) or newest_init_data: