2014-08-23 21:30:13 +02:00
|
|
|
import subprocess
|
2014-08-25 10:18:01 +02:00
|
|
|
|
|
|
|
from .common import PostProcessor
|
2016-05-10 09:58:25 +02:00
|
|
|
from ..compat import compat_shlex_quote
|
2022-04-12 00:32:57 +02:00
|
|
|
from ..utils import PostProcessingError, encodeArgument, variadic
|
2014-08-22 23:40:43 +02:00
|
|
|
|
|
|
|
|
2021-08-09 14:10:24 +02:00
|
|
|
class ExecPP(PostProcessor):
|
2021-01-07 20:28:41 +01:00
|
|
|
|
2015-05-10 17:47:49 +02:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
2021-08-09 14:10:24 +02:00
|
|
|
PostProcessor.__init__(self, downloader)
|
2021-08-07 10:00:55 +02:00
|
|
|
self.exec_cmd = variadic(exec_cmd)
|
2014-08-22 23:40:43 +02:00
|
|
|
|
2021-04-15 20:44:33 +02:00
|
|
|
def parse_cmd(self, cmd, info):
|
2021-06-03 20:00:38 +02:00
|
|
|
tmpl, tmpl_dict = self._downloader.prepare_outtmpl(cmd, info)
|
|
|
|
if tmpl_dict: # if there are no replacements, tmpl_dict = {}
|
2021-07-29 01:49:26 +02:00
|
|
|
return self._downloader.escape_outtmpl(tmpl) % tmpl_dict
|
2021-06-03 20:00:38 +02:00
|
|
|
|
2022-01-03 12:13:54 +01: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 10:18:01 +02:00
|
|
|
|
2021-04-15 20:44:33 +02:00
|
|
|
def run(self, info):
|
2021-08-07 10:00:55 +02:00
|
|
|
for tmpl in self.exec_cmd:
|
|
|
|
cmd = self.parse_cmd(tmpl, info)
|
|
|
|
self.to_screen('Executing command: %s' % cmd)
|
|
|
|
retCode = subprocess.call(encodeArgument(cmd), shell=True)
|
|
|
|
if retCode != 0:
|
|
|
|
raise PostProcessingError('Command returned error code %d' % retCode)
|
2021-04-11 02:09:55 +02:00
|
|
|
return [], info
|
2021-08-09 14:10:24 +02:00
|
|
|
|
|
|
|
|
2021-11-29 18:46:06 +01: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')
|