From 5042a061cb492241fe32cbc44b833bb352ae6a5f Mon Sep 17 00:00:00 2001 From: Mihail-Cosmin Munteanu Date: Thu, 10 Nov 2022 22:01:32 +0100 Subject: [PATCH] fixed issue #1 --- src/ytb/youtube.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ytb/youtube.py b/src/ytb/youtube.py index 3e88c57..6a87cbd 100644 --- a/src/ytb/youtube.py +++ b/src/ytb/youtube.py @@ -11,6 +11,7 @@ def __init__(self, config: dict = None): self.dl_ops = { 'outtmpl': join(expanduser("~/OneDrive/Desktop"), '%(title)s-%(id)s.%(ext)s'), 'quiet': True, + 'noprogress': True, 'no_warnings': True, 'throttled-rate': '100K' }