youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b7553b25543175c27c885b0c6ab77d91b270a520
parent 267ed0c5d3547c68f1d34203c2ae4b0d826a29d9
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 24 Nov 2013 15:20:16 +0100

[vik] Clarify output

Diffstat:
Myoutube_dl/extractor/viki.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py @@ -51,7 +51,8 @@ class VikiIE(SubtitlesInfoExtractor): age_limit = RATINGS.get(rating_str) info_url = 'http://www.viki.com/player5_fragment/%s?action=show&controller=videos' % video_id - info_webpage = self._download_webpage(info_url, video_id) + info_webpage = self._download_webpage( + info_url, video_id, note=u'Downloading info page') video_url = self._html_search_regex( r'<source[^>]+src="([^"]+)"', info_webpage, u'video URL')