mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
allow to use different command other than 'ffmpeg'
This commit is contained in:
parent
9a64b5ce9b
commit
6dfaa3c035
@ -221,8 +221,10 @@ class _OutputNode(_Node):
|
||||
args += reduce(operator.add, [self._get_global_args(node) for node in global_nodes], [])
|
||||
return args
|
||||
|
||||
def run(self):
|
||||
args = ['ffmpeg'] + self.get_args()
|
||||
def run(self, cmd='ffmpeg'):
|
||||
if type(cmd) == str:
|
||||
cmd = [cmd]
|
||||
args = cmd + self.get_args()
|
||||
subprocess.check_call(args)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user