fallback to estimate size for progress hook

This commit is contained in:
simon 2023-03-04 11:51:12 +07:00
parent a56de2818d
commit a459661fa2
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 4 additions and 1 deletions

View File

@ -293,8 +293,11 @@ class VideoDownloader:
title = "Downloading: " + response["info_dict"]["title"]
try:
size = response.get("_total_bytes_str")
if size.strip() == "N/A":
size = response.get("_total_bytes_estimate_str", "N/A")
percent = response["_percent_str"]
size = response["_total_bytes_str"]
speed = response["_speed_str"]
eta = response["_eta_str"]
message = f"{percent} of {size} at {speed} - time left: {eta}"