2014-08-25 08:18:01 +00:00
|
|
|
from .common import PostProcessor
|
2016-05-10 07:58:25 +00:00
|
|
|
from ..compat import compat_shlex_quote
|
2023-09-24 00:29:01 +00:00
|
|
|
from ..utils import Popen, PostProcessingError, variadic
|
2014-08-22 21:40:43 +00:00
|
|
|
|
|
|
|
|
2021-08-09 12:10:24 +00:00
|
|
|
class ExecPP(PostProcessor):
|
2021-01-07 19:28:41 +00:00
|
|
|
|
2015-05-10 15:47:49 +00:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
2021-08-09 12:10:24 +00:00
|
|
|
PostProcessor.__init__(self, downloader)
|
2021-08-07 08:00:55 +00:00
|
|
|
self.exec_cmd = variadic(exec_cmd)
|
2014-08-22 21:40:43 +00:00
|
|
|
|
2021-04-15 18:44:33 +00:00
|
|
|
def parse_cmd(self, cmd, info):
|
2021-06-03 18:00:38 +00:00
|
|
|
tmpl, tmpl_dict = self._downloader.prepare_outtmpl(cmd, info)
|
|
|
|
if tmpl_dict: # if there are no replacements, tmpl_dict = {}
|
2021-07-28 23:49:26 +00:00
|
|
|
return self._downloader.escape_outtmpl(tmpl) % tmpl_dict
|
2021-06-03 18:00:38 +00:00
|
|
|
|
2022-01-03 11:13:54 +00:00
|
|
|
filepath = info.get('filepath', info.get('_filename'))
|
|
|
|
# If video, and no replacements are found, replace {} for backard compatibility
|
|
|
|
if filepath:
|
|
|
|
if '{}' not in cmd:
|
|
|
|
cmd += ' {}'
|
|
|
|
cmd = cmd.replace('{}', compat_shlex_quote(filepath))
|
|
|
|
return cmd
|
2014-08-25 08:18:01 +00:00
|
|
|
|
2021-04-15 18:44:33 +00:00
|
|
|
def run(self, info):
|
2021-08-07 08:00:55 +00:00
|
|
|
for tmpl in self.exec_cmd:
|
|
|
|
cmd = self.parse_cmd(tmpl, info)
|
2023-09-24 00:29:01 +00:00
|
|
|
self.to_screen(f'Executing command: {cmd}')
|
|
|
|
_, _, return_code = Popen.run(cmd, shell=True)
|
|
|
|
if return_code != 0:
|
|
|
|
raise PostProcessingError(f'Command returned error code {return_code}')
|
2021-04-11 00:09:55 +00:00
|
|
|
return [], info
|
2021-08-09 12:10:24 +00:00
|
|
|
|
|
|
|
|
2021-11-29 17:46:06 +00:00
|
|
|
# Deprecated
|
|
|
|
class ExecAfterDownloadPP(ExecPP):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.deprecation_warning(
|
|
|
|
'yt_dlp.postprocessor.ExecAfterDownloadPP is deprecated '
|
|
|
|
'and may be removed in a future version. Use yt_dlp.postprocessor.ExecPP instead')
|