diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-03-28 23:35:48 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-03-28 23:35:48 +0700 |
commit | 12ee65ea0d09c6ac42ad06b3d561b4a26db00cfe (patch) | |
tree | 81daba6ada6e83aa05a643f01ce6132c9fca1964 /youtube_dl/options.py | |
parent | aea1dccbd07b073ef36b325a9a21eb3f642322d9 (diff) |
[options] Mention ISM for --fragment-retries and --skip-unavailable-fragments
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 6b811535f..2d2f5e47b 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -459,11 +459,11 @@ def parseOpts(overrideArguments=None): downloader.add_option( '--fragment-retries', dest='fragment_retries', metavar='RETRIES', default=10, - help='Number of retries for a fragment (default is %default), or "infinite" (DASH and hlsnative only)') + help='Number of retries for a fragment (default is %default), or "infinite" (DASH, hlsnative and ISM)') downloader.add_option( '--skip-unavailable-fragments', action='store_true', dest='skip_unavailable_fragments', default=True, - help='Skip unavailable fragments (DASH and hlsnative only)') + help='Skip unavailable fragments (DASH, hlsnative and ISM)') downloader.add_option( '--abort-on-unavailable-fragment', action='store_false', dest='skip_unavailable_fragments', |