From: Ricardo Garcia Date: Fri, 14 Aug 2009 22:33:50 +0000 (+0200) Subject: Modify _MORE_PAGES_INDICATOR for searches (fixes issue #41) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=304a4d85ea468fb2a39a7357cb28b64506246d42;p=youtube-dl Modify _MORE_PAGES_INDICATOR for searches (fixes issue #41) --- diff --git a/youtube-dl b/youtube-dl index 50b9197f2..becf1d25d 100755 --- a/youtube-dl +++ b/youtube-dl @@ -879,7 +879,7 @@ class YoutubeSearchIE(InfoExtractor): _VALID_QUERY = r'ytsearch(\d+|all)?:[\s\S]+' _TEMPLATE_URL = 'http://www.youtube.com/results?search_query=%s&page=%s&gl=US&hl=en' _VIDEO_INDICATOR = r'href="/watch\?v=.+?"' - _MORE_PAGES_INDICATOR = r'>Next' + _MORE_PAGES_INDICATOR = r'(?m)>\s*Next\s*' _youtube_ie = None _max_youtube_results = 1000 @@ -956,7 +956,7 @@ class YoutubeSearchIE(InfoExtractor): self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id) return - if self._MORE_PAGES_INDICATOR not in page: + if re.search(self._MORE_PAGES_INDICATOR, page) is None: for id in video_ids: self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id) return