2014-08-23 14:30:13 -05:00
|
|
|
from __future__ import unicode_literals
|
2014-08-25 10:18:01 +02:00
|
|
|
|
2014-08-23 14:30:13 -05:00
|
|
|
import subprocess
|
2014-08-25 10:18:01 +02:00
|
|
|
|
|
|
|
from .common import PostProcessor
|
2016-05-10 15:58:25 +08:00
|
|
|
from ..compat import compat_shlex_quote
|
2017-06-17 23:15:57 +07:00
|
|
|
from ..utils import (
|
|
|
|
encodeArgument,
|
|
|
|
PostProcessingError,
|
|
|
|
)
|
2014-08-22 16:40:43 -05:00
|
|
|
|
|
|
|
|
2014-08-23 14:30:13 -05:00
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
2015-05-10 17:47:49 +02:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
|
|
|
super(ExecAfterDownloadPP, self).__init__(downloader)
|
2014-08-25 10:18:01 +02:00
|
|
|
self.exec_cmd = exec_cmd
|
2014-08-22 16:40:43 -05:00
|
|
|
|
2014-08-23 14:30:13 -05:00
|
|
|
def run(self, information):
|
2014-08-25 10:18:01 +02:00
|
|
|
cmd = self.exec_cmd
|
2018-04-07 19:00:39 -07:00
|
|
|
info = {}
|
|
|
|
|
|
|
|
for key in information:
|
|
|
|
value = information[key]
|
|
|
|
info[key] = compat_shlex_quote(value) if isinstance(value, (str, unicode)) else value
|
|
|
|
|
|
|
|
# expose info to exec argument
|
|
|
|
# youtube-dl -x -o "%(playlist_index)s - %(title)s.%(ext)s" --exec "id3v2 -T {0[playlist_index]} -t {0[title]} {0[filepath]}" PLAYLIST_ID
|
|
|
|
cmd = cmd.format(info)
|
2014-08-25 10:18:01 +02:00
|
|
|
|
2016-02-14 15:37:17 +06:00
|
|
|
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
|
2017-06-17 23:15:57 +07:00
|
|
|
retCode = subprocess.call(encodeArgument(cmd), shell=True)
|
2014-08-25 10:18:01 +02:00
|
|
|
if retCode != 0:
|
|
|
|
raise PostProcessingError(
|
|
|
|
'Command returned error code %d' % retCode)
|
2014-08-22 16:40:43 -05:00
|
|
|
|
2015-04-18 11:36:42 +02:00
|
|
|
return [], information
|