From: Sergey M․ Date: Wed, 22 Apr 2015 15:09:21 +0000 (+0600) Subject: [hitbox] Clarify download messages X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=33b066bda0491bca54cc09d7d117867f885aa5f4;p=youtube-dl [hitbox] Clarify download messages --- diff --git a/youtube_dl/extractor/hitbox.py b/youtube_dl/extractor/hitbox.py index 2c440898e..421f55bbe 100644 --- a/youtube_dl/extractor/hitbox.py +++ b/youtube_dl/extractor/hitbox.py @@ -43,7 +43,8 @@ class HitboxIE(InfoExtractor): def _extract_metadata(self, url, video_id): thumb_base = 'https://edge.sf.hitbox.tv' metadata = self._download_json( - '%s/%s' % (url, video_id), video_id) + '%s/%s' % (url, video_id), video_id, + 'Downloading metadata JSON') date = 'media_live_since' media_type = 'livestream' @@ -90,7 +91,7 @@ class HitboxIE(InfoExtractor): player_config = self._download_json( 'https://www.hitbox.tv/api/player/config/video/%s' % video_id, - video_id) + video_id, 'Downloading video JSON') formats = [] for video in player_config['clip']['bitrates']: