mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge remote-tracking branch 'origin/feature-1' into feature-1
This commit is contained in:
commit
a51cfe7f1c
@ -105,7 +105,11 @@ def get_args(node):
|
||||
@operator(node_classes={OutputNode, GlobalNode})
|
||||
def run(node, cmd='ffmpeg'):
|
||||
"""Run ffmpeg on node graph."""
|
||||
args = [cmd] + node.get_args()
|
||||
if isinstance(cmd, basestring):
|
||||
args = [cmd]
|
||||
elif type(cmd) != list:
|
||||
args = list(cmd)
|
||||
args += node.get_args()
|
||||
_subprocess.check_call(args)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user