mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
9e49146352
commit
23326151c4
6 changed files with 56 additions and 6 deletions
|
@ -828,6 +828,18 @@ def create_parser():
|
|||
'--fragment-retries',
|
||||
dest='fragment_retries', metavar='RETRIES', default=10,
|
||||
help='Number of retries for a fragment (default is %default), or "infinite" (DASH, hlsnative and ISM)')
|
||||
downloader.add_option(
|
||||
'--retry-sleep',
|
||||
dest='retry_sleep', metavar='[TYPE:]EXPR', default={}, type='str',
|
||||
action='callback', callback=_dict_from_options_callback,
|
||||
callback_kwargs={
|
||||
'allowed_keys': 'http|fragment|file_access',
|
||||
'default_key': 'http',
|
||||
}, help=(
|
||||
'An expression for the time to sleep between retries in seconds (optionally) prefixed '
|
||||
'by the type of retry (http (default), fragment, file_access) to apply the sleep to. '
|
||||
'EXPR can be a number, or of the forms linear=START[:END[:STEP=1]] or exp=START[:END[:BASE=2]]. '
|
||||
'Eg: --retry-sleep linear=1::2 --retry-sleep fragment:exp=1:20'))
|
||||
downloader.add_option(
|
||||
'--skip-unavailable-fragments', '--no-abort-on-unavailable-fragment',
|
||||
action='store_true', dest='skip_unavailable_fragments', default=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue