diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-27 04:36:23 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-27 04:43:43 +0530 |
commit | 8a82af3511b4379af0d239dbd01c672c17a2c46a (patch) | |
tree | 6ab4c4cf233a5338c0be101919e0c64108ac8cc3 /yt_dlp/options.py | |
parent | 8246f8402b77dfb5c905e97b04b09f89632575d9 (diff) | |
download | hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.tar.lz hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.tar.xz hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.zip |
[cleanup] Misc fixes and cleanup
Closes #3780, Closes #3853, Closes #3850
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 65391410f..b44f5301b 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1634,8 +1634,8 @@ def create_parser(): action='store_true', dest='force_keyframes_at_cuts', default=False, help=( 'Force keyframes around chapters when removing/splitting them. ' - 'The resulting video may have fewer artifacts around the cuts, ' - 'but is very slow due to needing a re-encode')) + 'This is slow due to needing a re-encode, but ' + 'the resulting video may have fewer artifacts around the cuts')) postproc.add_option( '--no-force-keyframes-at-cuts', action='store_false', dest='force_keyframes_at_cuts', |