diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-05-20 02:35:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-05-20 02:38:24 +0530 |
commit | c8bc203fbf3bb09914e53f0833eed622ab7edbb9 (patch) | |
tree | 85176358a08f719caa66d6223f2c141468c21f2a /yt_dlp/options.py | |
parent | 21b9413cf7dd4830b2ece57af21589dd4538fc52 (diff) | |
download | hypervideo-pre-c8bc203fbf3bb09914e53f0833eed622ab7edbb9.tar.lz hypervideo-pre-c8bc203fbf3bb09914e53f0833eed622ab7edbb9.tar.xz hypervideo-pre-c8bc203fbf3bb09914e53f0833eed622ab7edbb9.zip |
[docs] Misc improvements
Closes #6814, closes #6940, closes #6733, closes #6923, closes #6566, closes #6726, closes #6728
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 362a648cd..dc46ce998 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -411,7 +411,7 @@ def create_parser(): general.add_option( '--no-flat-playlist', action='store_false', dest='extract_flat', - help='Extract the videos of a playlist') + help='Fully extract the videos of a playlist (default)') general.add_option( '--live-from-start', action='store_true', dest='live_from_start', @@ -521,11 +521,11 @@ def create_parser(): help=optparse.SUPPRESS_HELP) geo.add_option( '--xff', metavar='VALUE', - dest='geo_bypass', default="default", + dest='geo_bypass', default='default', help=( 'How to fake X-Forwarded-For HTTP header to try bypassing geographic restriction. ' - 'One of "default" (Only when known to be useful), "never", ' - 'a two-letter ISO 3166-2 country code, or an IP block in CIDR notation')) + 'One of "default" (only when known to be useful), "never", ' + 'an IP block in CIDR notation, or a two-letter ISO 3166-2 country code')) geo.add_option( '--geo-bypass', action='store_const', dest='geo_bypass', const='default', @@ -617,7 +617,7 @@ def create_parser(): 'that contains the phrase "cats & dogs" (caseless). ' 'Use "--match-filter -" to interactively ask whether to download each video')) selection.add_option( - '--no-match-filter', + '--no-match-filters', dest='match_filter', action='store_const', const=None, help='Do not use any --match-filter (default)') selection.add_option( |