diff options
author | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-30 16:22:09 -0300 |
---|---|---|
committer | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-30 16:22:09 -0300 |
commit | 1866432db74946c2b66263d38ed2c9d9d7e3177d (patch) | |
tree | 49409dd9af67a997ad7b49a3b2bd27514c73811b /youtube_dl/options.py | |
parent | 14835de9fb41798c8e6e731a3f07ae871770666f (diff) |
Rename --pp-params to --postprocessor-args and access value as super class attribute
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 fbba9b9d8..3d88428c4 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -688,8 +688,8 @@ def parseOpts(overrideArguments=None): metavar='FORMAT', dest='recodevideo', default=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, metavar='ARGS', + '--postprocessor-args', + dest='postprocessor_args', default=None, metavar='ARGS', help='Extra parameters for video post-processor.') postproc.add_option( '-k', '--keep-video', |