aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-02-03 18:53:14 +0800
committerGitHub <noreply@github.com>2017-02-03 18:53:14 +0800
commit8939f784d92a8267f5bb1967e7953c2952ca243c (patch)
tree7cfa5b8c8433e0b4659a572a651bc4dfaeaff82c /youtube_dl/options.py
parentdf0588a31f42010d4d43a428ca8a8d5908a960c9 (diff)
parent75822ca7909d7f7e15694f73b05b2bf0f1fa61f3 (diff)
Merge pull request #11901 from ThomasChr/randonplaylistorder
New parameter --playlist-random to randomize playlist download order. Fixes #11889
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 3abf621c0..349f44778 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -471,6 +471,10 @@ def parseOpts(overrideArguments=None):
action='store_true',
help='Download playlist videos in reverse order')
downloader.add_option(
+ '--playlist-random',
+ action='store_true',
+ help='Download playlist videos in random order')
+ downloader.add_option(
'--xattr-set-filesize',
dest='xattr_set_filesize', action='store_true',
help='Set file xattribute ytdl.filesize with expected file size (experimental)')