diff options
author | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-16 18:10:31 -0300 |
---|---|---|
committer | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-16 18:10:31 -0300 |
commit | 14835de9fb41798c8e6e731a3f07ae871770666f (patch) | |
tree | 5490879a2e241c06180375f581a8bf47f9cff2e1 /youtube_dl/options.py | |
parent | d84f1d14b526c4a5359117a58f25691a3da4c97e (diff) |
Use shlex.split for --pp-params and update related docs.
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index ceb4b5f38..fbba9b9d8 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -689,8 +689,8 @@ def parseOpts(overrideArguments=None): help='Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv|xvid)') postproc.add_option( '--pp-params', - dest='pp_params', default=None, - help='Extra parameters for video post-processor. The params will be splited on spaces.') + dest='pp_params', default=None, metavar='ARGS', + help='Extra parameters for video post-processor.') postproc.add_option( '-k', '--keep-video', action='store_true', dest='keepvideo', default=False, |