diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 09:21:20 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 09:21:20 +0530 |
commit | ad54c9130e793ce433bf9da334fa80df9f3aee58 (patch) | |
tree | 859a37aa6647ac90e619ba85aa5db58a0c733ae9 /yt_dlp/options.py | |
parent | db3ad8a67661d7b234a6954d9c6a4a9b1749f5eb (diff) | |
download | hypervideo-pre-ad54c9130e793ce433bf9da334fa80df9f3aee58.tar.lz hypervideo-pre-ad54c9130e793ce433bf9da334fa80df9f3aee58.tar.xz hypervideo-pre-ad54c9130e793ce433bf9da334fa80df9f3aee58.zip |
[cleanup] Misc
Closes #6288, Closes #7197, Closes #7265, Closes #7353, Closes #5773
Authored by: mikf, freezboltz, pukkandan
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index b174a24af..9d6dbec9f 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1414,8 +1414,7 @@ def create_parser(): '--clean-info-json', '--clean-infojson', action='store_true', dest='clean_infojson', default=None, help=( - 'Remove some private fields such as filenames from the infojson. ' - 'Note that it could still contain some personal information (default)')) + 'Remove some internal metadata such as filenames from the infojson (default)')) filesystem.add_option( '--no-clean-info-json', '--no-clean-infojson', action='store_false', dest='clean_infojson', @@ -1678,8 +1677,7 @@ def create_parser(): 'Execute a command, optionally prefixed with when to execute it, separated by a ":". ' 'Supported values of "WHEN" are the same as that of --use-postprocessor (default: after_move). ' 'Same syntax as the output template can be used to pass any field as arguments to the command. ' - 'After download, an additional field "filepath" that contains the final path of the downloaded file ' - 'is also available, and if no fields are passed, %(filepath,_filename|)q is appended to the end of the command. ' + 'If no fields are passed, %(filepath,_filename|)q is appended to the end of the command. ' 'This option can be used multiple times')) postproc.add_option( '--no-exec', |