diff options
author | dirkf <[email protected]> | 2022-08-29 13:02:17 +0100 |
---|---|---|
committer | dirkf <[email protected]> | 2022-08-29 13:02:17 +0100 |
commit | 4050e10a4c3445c5399239567eb074acb2f65c18 (patch) | |
tree | 96922e0f4c0cba58a99244d540ecf9886c69c4ed | |
parent | ed5c44e7b74ac77f87ca5ed6cb5e964a0c6a0678 (diff) | |
download | youtube-dl-4050e10a4c3445c5399239567eb074acb2f65c18.tar.gz youtube-dl-4050e10a4c3445c5399239567eb074acb2f65c18.zip |
[options] Document that postprocessing is not forced by --postprocessor-args
Resolves #30307
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index f6621ef91..f6d2b0898 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -801,7 +801,7 @@ def parseOpts(overrideArguments=None): postproc.add_option( '--postprocessor-args', dest='postprocessor_args', metavar='ARGS', - help='Give these arguments to the postprocessor') + help='Give these arguments to the postprocessor (if postprocessing is required)') postproc.add_option( '-k', '--keep-video', action='store_true', dest='keepvideo', default=False, |