allow to use different command other than 'ffmpeg'

This commit is contained in:
Davide Depau 2017-05-25 17:43:44 +02:00
parent 9a64b5ce9b
commit 6dfaa3c035

View File

@ -221,8 +221,10 @@ class _OutputNode(_Node):
args += reduce(operator.add, [self._get_global_args(node) for node in global_nodes], []) args += reduce(operator.add, [self._get_global_args(node) for node in global_nodes], [])
return args return args
def run(self): def run(self, cmd='ffmpeg'):
args = ['ffmpeg'] + self.get_args() if type(cmd) == str:
cmd = [cmd]
args = cmd + self.get_args()
subprocess.check_call(args) subprocess.check_call(args)