youtube-dl/youtube_dl/postprocessor/execafterdownload.py

32 lines
877 B
Python
Raw Permalink Normal View History

from __future__ import unicode_literals
2014-08-25 08:18:01 +00:00
import subprocess
2014-08-25 08:18:01 +00:00
from .common import PostProcessor
from ..compat import compat_shlex_quote
from ..utils import (
encodeArgument,
PostProcessingError,
)
2014-08-22 21:40:43 +00:00
class ExecAfterDownloadPP(PostProcessor):
def __init__(self, downloader, exec_cmd):
super(ExecAfterDownloadPP, self).__init__(downloader)
2014-08-25 08:18:01 +00:00
self.exec_cmd = exec_cmd
2014-08-22 21:40:43 +00:00
def run(self, information):
2014-08-25 08:18:01 +00:00
cmd = self.exec_cmd
2014-12-09 22:11:26 +00:00
if '{}' not in cmd:
2014-08-25 08:18:01 +00:00
cmd += ' {}'
2014-08-22 21:40:43 +00:00
cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
2014-08-25 08:18:01 +00:00
2016-02-14 09:37:17 +00:00
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
retCode = subprocess.call(encodeArgument(cmd), shell=True)
2014-08-25 08:18:01 +00:00
if retCode != 0:
raise PostProcessingError(
'Command returned error code %d' % retCode)
2014-08-22 21:40:43 +00:00
return [], information