From 6b240e2f24d85224ddcccef6fdd0d220e1fd704f Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 25 Oct 2015 18:23:39 +0100 Subject: [PATCH] hds: support for silent --- lib/svtplay_dl/fetcher/hds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/fetcher/hds.py b/lib/svtplay_dl/fetcher/hds.py index d94e00c..010e1d0 100644 --- a/lib/svtplay_dl/fetcher/hds.py +++ b/lib/svtplay_dl/fetcher/hds.py @@ -111,7 +111,7 @@ class HDS(VideoRetriever): eta = ETA(total) while i <= total: url = "%s/%sSeg1-Frag%s?%s" % (baseurl, self.url, start, querystring) - if self.options.output != "-": + if self.options.output != "-" or not self.options.silent: eta.update(i) progressbar(total, i, ''.join(["ETA: ", str(eta)])) data = self.http.request("get", url, cookies=cookies)