Browse Source

Added cap if user requests ytsearch number over 1000 (with warning)

rtmp_test
dannycolligan 15 years ago
committed by Ricardo Garcia
parent
commit
257453b92b
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube-dl

+ 3
- 0
youtube-dl View File

@ -786,6 +786,9 @@ class YoutubeSearchIE(InfoExtractor):
if n <= 0:
self.to_stderr(u'ERROR: invalid download number %s for query "%s"' % (n, query))
return [None]
elif n > self._max_youtube_results:
self.to_stderr(u'WARNING: ytsearch returns max %i results (you requested %i)' % (self._max_youtube_results, n))
n = self._max_youtube_results
return self._download_n_results(query, n)
except ValueError: # parsing prefix as int fails
return self._download_n_results(query, 1)


Loading…
Cancel
Save