2014-08-25 02:18:01 -06:00
|
|
|
from .common import PostProcessor
|
2024-06-11 17:09:58 -06:00
|
|
|
from ..utils import Popen, PostProcessingError, shell_quote, variadic
|
2014-08-22 15:40:43 -06:00
|
|
|
|
|
|
|
|
2021-08-09 06:10:24 -06:00
|
|
|
class ExecPP(PostProcessor):
|
2021-01-07 12:28:41 -07:00
|
|
|
|
2015-05-10 09:47:49 -06:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
2021-08-09 06:10:24 -06:00
|
|
|
PostProcessor.__init__(self, downloader)
|
2021-08-07 02:00:55 -06:00
|
|
|
self.exec_cmd = variadic(exec_cmd)
|
2014-08-22 15:40:43 -06:00
|
|
|
|
2021-04-15 12:44:33 -06:00
|
|
|
def parse_cmd(self, cmd, info):
|
2021-06-03 12:00:38 -06:00
|
|
|
tmpl, tmpl_dict = self._downloader.prepare_outtmpl(cmd, info)
|
|
|
|
if tmpl_dict: # if there are no replacements, tmpl_dict = {}
|
2021-07-28 17:49:26 -06:00
|
|
|
return self._downloader.escape_outtmpl(tmpl) % tmpl_dict
|
2021-06-03 12:00:38 -06:00
|
|
|
|
2022-01-03 04:13:54 -07: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 += ' {}'
|
2024-06-11 17:09:58 -06:00
|
|
|
cmd = cmd.replace('{}', shell_quote(filepath))
|
2022-01-03 04:13:54 -07:00
|
|
|
return cmd
|
2014-08-25 02:18:01 -06:00
|
|
|
|
2021-04-15 12:44:33 -06:00
|
|
|
def run(self, info):
|
2021-08-07 02:00:55 -06:00
|
|
|
for tmpl in self.exec_cmd:
|
|
|
|
cmd = self.parse_cmd(tmpl, info)
|
2023-09-23 18:29:01 -06: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-10 18:09:55 -06:00
|
|
|
return [], info
|
2021-08-09 06:10:24 -06:00
|
|
|
|
|
|
|
|
2021-11-29 10:46:06 -07: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')
|