diff options
author | Mark Schreiber <mark7@alumni.cmu.edu> | 2014-07-10 20:11:11 -0700 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 16:56:29 +0100 |
commit | ff815fe65aab83db7e11251db5eafc76504adf05 (patch) | |
tree | eea4f92a060d3efb0b370a0f364d39799e1f4f1a /youtube_dl/options.py | |
parent | da3a2d8137fa89051b011d90875827504a9a9373 (diff) |
Download playlist items in reverse order
Series of videos are typically uploaded to YouTube playlists in
chronological order. By default, these videos are downloaded
latest-to-earliest; this is great for seeing the latest videos in a
series, but prevents streaming video in the order that the videos were
produced. Add an option to download videos in reverse order,
earliest-to-latest.
Conflicts:
youtube_dl/YoutubeDL.py
youtube_dl/__init__.py
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 041ca83d8..7654d1a4e 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -349,6 +349,10 @@ def parseOpts(overrideArguments=None): '--test', action='store_true', dest='test', default=False, help=optparse.SUPPRESS_HELP) + downloader.add_option( + '--playlist-reverse', + action='store_true', + help='Download playlist videos in reverse order') workarounds = optparse.OptionGroup(parser, 'Workarounds') workarounds.add_option( |