Merge pull request #6 from Depaulicious/patch-2

Allow arguments to be manually passed to ffmpeg/run wrappers
This commit is contained in:
Karl Kroening 2017-05-27 17:23:59 -10:00 committed by GitHub
commit 236dae617f

View File

@ -104,7 +104,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)