|
|
@ -6,6 +6,7 @@ from .common import PostProcessor
|
|
|
|
from ..compat import compat_shlex_split
|
|
|
|
from ..compat import compat_shlex_split
|
|
|
|
from ..utils import (
|
|
|
|
from ..utils import (
|
|
|
|
check_executable,
|
|
|
|
check_executable,
|
|
|
|
|
|
|
|
cli_option,
|
|
|
|
encodeArgument,
|
|
|
|
encodeArgument,
|
|
|
|
encodeFilename,
|
|
|
|
encodeFilename,
|
|
|
|
shell_quote,
|
|
|
|
shell_quote,
|
|
|
@ -70,6 +71,7 @@ class SponSkrubPP(PostProcessor):
|
|
|
|
cmd = [self.path]
|
|
|
|
cmd = [self.path]
|
|
|
|
if not self.cutout:
|
|
|
|
if not self.cutout:
|
|
|
|
cmd += ['-chapter']
|
|
|
|
cmd += ['-chapter']
|
|
|
|
|
|
|
|
cmd += cli_option(self._downloader.params, '-proxy', 'proxy')
|
|
|
|
cmd += compat_shlex_split(self.args) # For backward compatibility
|
|
|
|
cmd += compat_shlex_split(self.args) # For backward compatibility
|
|
|
|
cmd += self._configuration_args(self._exe_name, use_compat=False)
|
|
|
|
cmd += self._configuration_args(self._exe_name, use_compat=False)
|
|
|
|
cmd += ['--', information['id'], filename, temp_filename]
|
|
|
|
cmd += ['--', information['id'], filename, temp_filename]
|
|
|
|