diff options
author | Unit 193 <32967979+unit193@users.noreply.github.com> | 2021-12-19 10:18:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 20:48:06 +0530 |
commit | e75bb0d6c342c8664f136f6e5492c62123749497 (patch) | |
tree | 73b5be472ca9c78bb9b4826cc65d145797a5731f /yt_dlp/options.py | |
parent | dd0228ce1f708b12d7b1579438f63fda37c5bb48 (diff) | |
download | hypervideo-pre-e75bb0d6c342c8664f136f6e5492c62123749497.tar.lz hypervideo-pre-e75bb0d6c342c8664f136f6e5492c62123749497.tar.xz hypervideo-pre-e75bb0d6c342c8664f136f6e5492c62123749497.zip |
[cleanup] Fix some typos (#2033)
Authored by: unit193
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 6f4c7eb0e..f4293e688 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1434,7 +1434,7 @@ def parseOpts(overrideArguments=None): action='store_true', dest='force_keyframes_at_cuts', default=False, help=( 'Force keyframes around the chapters before removing/splitting them. ' - 'Requires a reencode and thus is very slow, but the resulting video ' + 'Requires a re-encode and thus is very slow, but the resulting video ' 'may have fewer artifacts around the cuts')) postproc.add_option( '--no-force-keyframes-at-cuts', @@ -1452,7 +1452,7 @@ def parseOpts(overrideArguments=None): 'process': lambda val: dict(_postprocessor_opts_parser(*val.split(':', 1))) }, help=( 'The (case sensitive) name of plugin postprocessors to be enabled, ' - 'and (optionally) arguments to be passed to it, seperated by a colon ":". ' + 'and (optionally) arguments to be passed to it, separated by a colon ":". ' 'ARGS are a semicolon ";" delimited list of NAME=VALUE. ' 'The "when" argument determines when the postprocessor is invoked. ' 'It can be one of "pre_process" (after extraction), ' |