X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fpostprocessor%2Fcommon.py;h=599dd1df2b2fa16b05548ef847d41b3d6d7c9560;hb=6d874fee2a4b54272c48960f3082072d37a7e0ae;hp=c44501b594c87fc3c82772c0c67ce2c5d27689f8;hpb=1866432db74946c2b66263d38ed2c9d9d7e3177d;p=youtube-dl diff --git a/youtube_dl/postprocessor/common.py b/youtube_dl/postprocessor/common.py index c44501b59..599dd1df2 100644 --- a/youtube_dl/postprocessor/common.py +++ b/youtube_dl/postprocessor/common.py @@ -1,10 +1,10 @@ from __future__ import unicode_literals import os -import shlex from ..utils import ( PostProcessingError, + cli_configuration_args, encodeFilename, ) @@ -23,14 +23,15 @@ class PostProcessor(object): of the chain is reached. PostProcessor objects follow a "mutual registration" process similar - to InfoExtractor objects. And it can receive parameters from CLI trough - --postprocessor-args. + to InfoExtractor objects. + + Optionally PostProcessor can use a list of additional command-line arguments + with self._configuration_args. """ _downloader = None - def __init__(self, downloader=None, extra_cmd_args=None): - self._extra_cmd_args = shlex.split(extra_cmd_args or '') + def __init__(self, downloader=None): self._downloader = downloader def set_downloader(self, downloader): @@ -60,6 +61,9 @@ class PostProcessor(object): except Exception: self._downloader.report_warning(errnote) + def _configuration_args(self, default=[]): + return cli_configuration_args(self._downloader.params, 'postprocessor_args', default) + class AudioConversionError(PostProcessingError): pass