youtube-dl

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

commit fd9288c315b10f6a741d435485028ce54eee4b24
parent 1db4ff60542e695892d34729ebef5da4989eff72
Author: dannyc@omega <dannyc@omega>
Date:   Mon,  6 Apr 2009 17:39:16 -0700

Changed ytsearchall to retrieve max 1000 results

Diffstat:
Myoutube-dl | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -751,6 +751,7 @@ class YoutubeSearchIE(InfoExtractor): _VIDEO_INDICATOR = r'href="/watch\?v=.+?"' _MORE_PAGES_INDICATOR = r'>Next</a>' _youtube_ie = None + _max_youtube_results = 1000 def __init__(self, youtube_ie, downloader=None): InfoExtractor.__init__(self, downloader) @@ -778,7 +779,7 @@ class YoutubeSearchIE(InfoExtractor): if prefix == '': return self._download_n_results(query, 1) elif prefix == 'all': - return self._download_n_results(query, -1) + return self._download_n_results(query, self._max_youtube_results) else: try: n = int(prefix)