mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 01:03:04 +01:00
43820c0370
* Added `PP+exe:args` syntax If `PP+exe:args` is specifically given, only it used. Otherwise, `PP:args` and `exe:args` are combined. If none of the `PP`, `exe` or `PP+exe` args are given, `default` is used `Default` is purposely left undocumented since it exists only for backward compatibility * Also added proper handling of args in `EmbedThumbnail` Related: https://github.com/ytdl-org/youtube-dl/pull/27723
37 lines
920 B
Python
37 lines
920 B
Python
from __future__ import unicode_literals
|
|
|
|
import subprocess
|
|
|
|
from .common import PostProcessor
|
|
from ..compat import compat_shlex_quote
|
|
from ..utils import (
|
|
encodeArgument,
|
|
PostProcessingError,
|
|
)
|
|
|
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
|
|
|
def __init__(self, downloader, exec_cmd):
|
|
super(ExecAfterDownloadPP, self).__init__(downloader)
|
|
self.exec_cmd = exec_cmd
|
|
|
|
@classmethod
|
|
def pp_key(cls):
|
|
return 'Exec'
|
|
|
|
def run(self, information):
|
|
cmd = self.exec_cmd
|
|
if '{}' not in cmd:
|
|
cmd += ' {}'
|
|
|
|
cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
|
|
|
|
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)
|
|
|
|
return [], information
|