diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-02-03 18:53:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 18:53:14 +0800 |
commit | 8939f784d92a8267f5bb1967e7953c2952ca243c (patch) | |
tree | 7cfa5b8c8433e0b4659a572a651bc4dfaeaff82c /youtube_dl/YoutubeDL.py | |
parent | df0588a31f42010d4d43a428ca8a8d5908a960c9 (diff) | |
parent | 75822ca7909d7f7e15694f73b05b2bf0f1fa61f3 (diff) |
Merge pull request #11901 from ThomasChr/randonplaylistorder
New parameter --playlist-random to randomize playlist download order. Fixes #11889
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index c71e94518..a7bf5a1b0 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -24,6 +24,7 @@ import sys import time import tokenize import traceback +import random from .compat import ( compat_basestring, @@ -159,6 +160,7 @@ class YoutubeDL(object): playlistend: Playlist item to end at. playlist_items: Specific indices of playlist to download. playlistreverse: Download playlist items in reverse order. + playlistrandom: Download playlist items in random order. matchtitle: Download only matching titles. rejecttitle: Reject downloads for matching titles. logger: Log messages to a logging.Logger instance. @@ -842,6 +844,9 @@ class YoutubeDL(object): if self.params.get('playlistreverse', False): entries = entries[::-1] + if self.params.get('playlistrandom', False): + random.shuffle(entries) + for i, entry in enumerate(entries, 1): self.to_screen('[download] Downloading video %s of %s' % (i, n_entries)) extra = { |