Merge remote-tracking branch 'origin/feature-1' into feature-1

This commit is contained in:
Karl Kroening 2017-05-27 17:26:45 -10:00
commit a51cfe7f1c

View File

@ -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)