Updated readme

This commit is contained in:
brotherBox 2014-12-05 19:58:36 +01:00
parent f2c22d9f3f
commit 58a952ae20
3 changed files with 3 additions and 2 deletions

View File

@ -102,6 +102,7 @@ which means you can modify it, redistribute it or use it however you like.
downloaded videos in it.
--include-ads Download advertisements as well
(experimental)
--reverse-playlist Reverses video order in playlist
## Download Options:
-r, --rate-limit LIMIT maximum download rate in bytes per second

View File

@ -1357,7 +1357,7 @@ class YoutubeUserIE(InfoExtractor):
# page by page until there are no video ids - it means we got
# all of them.
def download_page(pagenum):
def download_page(pagenum, reverse=False):
start_index = pagenum * self._GDATA_PAGE_SIZE + 1
gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)

View File

@ -237,7 +237,7 @@ def parseOpts(overrideArguments=None):
help='Download advertisements as well (experimental)')
selection.add_option(
'--reverse-playlist',
dest='reverse_playlist', action='store_true', help='Reverse playlists')
dest='reverse_playlist', action='store_true', help='Reverses video order in playlist')
authentication = optparse.OptionGroup(parser, 'Authentication Options')
authentication.add_option(