allow arguments to be manually passed to ffmpeg/run wrappers

This commit is contained in:
Davide Depau 2017-05-26 17:32:30 +02:00 committed by GitHub
parent 4ada40b14c
commit c0d37f30ea

View File

@ -230,5 +230,9 @@ def get_args(parent):
@operator(node_classes={OutputNode, GlobalNode})
def run(parent, cmd='ffmpeg'):
args = [cmd] + parent.get_args()
if type(cmd) == str:
cmd = [cmd]
elif type(cmd) != list:
cmd = list(cmd)
args = cmd + parent.get_args()
subprocess.check_call(args)