aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorMark Schreiber <mark7@alumni.cmu.edu>2014-07-10 20:11:11 -0700
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-12 16:56:29 +0100
commitff815fe65aab83db7e11251db5eafc76504adf05 (patch)
treeeea4f92a060d3efb0b370a0f364d39799e1f4f1a /youtube_dl/__init__.py
parentda3a2d8137fa89051b011d90875827504a9a9373 (diff)
downloadyoutube-dl-ff815fe65aab83db7e11251db5eafc76504adf05.tar.xz
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/__init__.py')
-rw-r--r--youtube_dl/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 77b3384a0..70c4f25b1 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -249,6 +249,7 @@ def _real_main(argv=None):
'progress_with_newline': opts.progress_with_newline,
'playliststart': opts.playliststart,
'playlistend': opts.playlistend,
+ 'playlistreverse': opts.playlist_reverse,
'noplaylist': opts.noplaylist,
'logtostderr': opts.outtmpl == '-',
'consoletitle': opts.consoletitle,