]> jfr.im git - yt-dlp.git/blame - yt_dlp/postprocessor/exec.py
Allow `--exec` to be run at any post-processing stage
[yt-dlp.git] / yt_dlp / postprocessor / exec.py
CommitLineData
a2360a4c 1from __future__ import unicode_literals
8d31fa3c 2
a2360a4c 3import subprocess
8d31fa3c
PH
4
5from .common import PostProcessor
702ccf2d 6from ..compat import compat_shlex_quote
8b6ac49e
S
7from ..utils import (
8 encodeArgument,
9 PostProcessingError,
c681cb5d 10 variadic,
8b6ac49e 11)
a7cacbca 12
a7cacbca 13
ad3dc496 14class ExecPP(PostProcessor):
1b77b347 15
69b46b3d 16 def __init__(self, downloader, exec_cmd):
ad3dc496 17 PostProcessor.__init__(self, downloader)
c681cb5d 18 self.exec_cmd = variadic(exec_cmd)
a7cacbca 19
c6ce8154 20 def parse_cmd(self, cmd, info):
752cda38 21 tmpl, tmpl_dict = self._downloader.prepare_outtmpl(cmd, info)
22 if tmpl_dict: # if there are no replacements, tmpl_dict = {}
901130bb 23 return self._downloader.escape_outtmpl(tmpl) % tmpl_dict
752cda38 24
1e43a6f7 25 filepath = info.get('filepath', info.get('_filename'))
26 # If video, and no replacements are found, replace {} for backard compatibility
27 if filepath:
28 if '{}' not in cmd:
29 cmd += ' {}'
30 cmd = cmd.replace('{}', compat_shlex_quote(filepath))
31 return cmd
8d31fa3c 32
c6ce8154 33 def run(self, info):
c681cb5d 34 for tmpl in self.exec_cmd:
35 cmd = self.parse_cmd(tmpl, info)
36 self.to_screen('Executing command: %s' % cmd)
37 retCode = subprocess.call(encodeArgument(cmd), shell=True)
38 if retCode != 0:
39 raise PostProcessingError('Command returned error code %d' % retCode)
9de3ea31 40 return [], info
ad3dc496 41
42
ee8dd27a 43# Deprecated
44class ExecAfterDownloadPP(ExecPP):
45 def __init__(self, *args, **kwargs):
46 super().__init__(*args, **kwargs)
47 self.deprecation_warning(
48 'yt_dlp.postprocessor.ExecAfterDownloadPP is deprecated '
49 'and may be removed in a future version. Use yt_dlp.postprocessor.ExecPP instead')