mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
allow arguments to be manually passed to ffmpeg/run wrappers
This commit is contained in:
parent
4ada40b14c
commit
c0d37f30ea
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user