mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-01-08 14:17:54 +01:00
requested changes
This commit is contained in:
parent
b2dd1983a4
commit
611058327f
@ -922,9 +922,9 @@ class YoutubeDL(object):
|
|||||||
|
|
||||||
x_forwarded_for = ie_result.get('__x_forwarded_for_ip')
|
x_forwarded_for = ie_result.get('__x_forwarded_for_ip')
|
||||||
|
|
||||||
if self.params.get('date_playlist_order') == 'asc' and not self.params.get('start_from_earliest'):
|
if self.params.get('date_playlist_order') == 'desc' and self.params.get('playlist_reverse'):
|
||||||
entries.reverse()
|
entries.reverse()
|
||||||
if self.params.get('date_playlist_order') == 'desc' and self.params.get('start_from_earliest'):
|
elif self.params.get('date_playlist_order') == 'asc' and not self.params.get('playlist_reverse'):
|
||||||
entries.reverse()
|
entries.reverse()
|
||||||
|
|
||||||
for i, entry in enumerate(entries, 1):
|
for i, entry in enumerate(entries, 1):
|
||||||
|
@ -301,11 +301,9 @@ def parseOpts(overrideArguments=None):
|
|||||||
'--date-playlist-order',
|
'--date-playlist-order',
|
||||||
metavar='ORDER', dest='date_playlist_order', default='none',
|
metavar='ORDER', dest='date_playlist_order', default='none',
|
||||||
type='choice', choices=['asc', 'desc', 'none'],
|
type='choice', choices=['asc', 'desc', 'none'],
|
||||||
help='Specify whether a playlist is known to be listed in chronological order. "Asc", "desc" or "none". Descending order is most recent to least, and is useful for batch-downloading the new videos from a Youtube channel. Default is "none", and is like not using this option at all. Causes youtube-dl to automatically stop after encountering the first video date outside of the date range configured by --date, --datebefore, and/or --dateafter.')
|
help='The playlist is known to be sorted in chronological order. '
|
||||||
selection.add_option(
|
'One of desc (most recent first), asc (least recent first), or none (no effect, the default). '
|
||||||
'--start-from-earliest',
|
'Causes youtube-dl to stop downloading the playlist after encountering a video outside the specified date restrictions.')
|
||||||
metavar='FROM', dest='start_from_earliest', action='store_true',
|
|
||||||
help='Specify to start from the earliest rather than from the latest, the default behavior. This option doesn\'t have any effect without --date-playlist-order.')
|
|
||||||
selection.add_option(
|
selection.add_option(
|
||||||
'--min-views',
|
'--min-views',
|
||||||
metavar='COUNT', dest='min_views', default=None, type=int,
|
metavar='COUNT', dest='min_views', default=None, type=int,
|
||||||
@ -491,11 +489,11 @@ def parseOpts(overrideArguments=None):
|
|||||||
help=optparse.SUPPRESS_HELP)
|
help=optparse.SUPPRESS_HELP)
|
||||||
downloader.add_option(
|
downloader.add_option(
|
||||||
'--playlist-reverse',
|
'--playlist-reverse',
|
||||||
action='store_true',
|
dest='playlist_reverse', action='store_true',
|
||||||
help='Download playlist videos in reverse order')
|
help='Download playlist videos in reverse order')
|
||||||
downloader.add_option(
|
downloader.add_option(
|
||||||
'--playlist-random',
|
'--playlist-random',
|
||||||
action='store_true',
|
dest='playlist_random', action='store_true',
|
||||||
help='Download playlist videos in random order')
|
help='Download playlist videos in random order')
|
||||||
downloader.add_option(
|
downloader.add_option(
|
||||||
'--xattr-set-filesize',
|
'--xattr-set-filesize',
|
||||||
|
Loading…
Reference in New Issue
Block a user