mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +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], [])
|
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)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user