mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-31 02:19:43 +00:00
parent
b49d5ffc53
commit
16be117729
@ -481,6 +481,9 @@ ## Video Selection:
|
|||||||
--max-downloads NUMBER Abort after downloading NUMBER files
|
--max-downloads NUMBER Abort after downloading NUMBER files
|
||||||
--break-on-existing Stop the download process when encountering
|
--break-on-existing Stop the download process when encountering
|
||||||
a file that is in the archive
|
a file that is in the archive
|
||||||
|
--no-break-on-existing Do not stop the download process when
|
||||||
|
encountering a file that is in the archive
|
||||||
|
(default)
|
||||||
--break-per-input Alters --max-downloads, --break-on-existing,
|
--break-per-input Alters --max-downloads, --break-on-existing,
|
||||||
--break-match-filter, and autonumber to
|
--break-match-filter, and autonumber to
|
||||||
reset per input URL
|
reset per input URL
|
||||||
|
@ -691,6 +691,10 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs):
|
|||||||
'--break-on-existing',
|
'--break-on-existing',
|
||||||
action='store_true', dest='break_on_existing', default=False,
|
action='store_true', dest='break_on_existing', default=False,
|
||||||
help='Stop the download process when encountering a file that is in the archive')
|
help='Stop the download process when encountering a file that is in the archive')
|
||||||
|
selection.add_option(
|
||||||
|
'--no-break-on-existing',
|
||||||
|
action='store_false', dest='break_on_existing',
|
||||||
|
help='Do not stop the download process when encountering a file that is in the archive (default)')
|
||||||
selection.add_option(
|
selection.add_option(
|
||||||
'--break-on-reject',
|
'--break-on-reject',
|
||||||
action='store_true', dest='break_on_reject', default=False,
|
action='store_true', dest='break_on_reject', default=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user