1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-16 21:18:53 +00:00

Merge branch 'master' into yt-live-from-start-range

This commit is contained in:
bashonly
2024-04-16 11:01:17 -05:00
committed by GitHub
86 changed files with 3058 additions and 1337 deletions

View File

@@ -698,6 +698,10 @@ def create_parser():
'--break-on-existing',
action='store_true', dest='break_on_existing', default=False,
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(
'--break-on-reject',
action='store_true', dest='break_on_reject', default=False,
@@ -1261,6 +1265,10 @@ def create_parser():
'the progress attributes are accessible under "progress" key. E.g. '
# TODO: Document the fields inside "progress"
'--console-title --progress-template "download-title:%(info.id)s-%(progress.eta)s"'))
verbosity.add_option(
'--progress-delta',
metavar='SECONDS', action='store', dest='progress_delta', type=float, default=0,
help='Time between progress output (default: 0)')
verbosity.add_option(
'-v', '--verbose',
action='store_true', dest='verbose', default=False,