mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
fix: Add double qoutation if the command started and ended with brackets
This commit is contained in:
parent
df129c7ba3
commit
fd92a1f7ae
@ -170,6 +170,9 @@ def get_args(stream_spec, overwrite_output=False):
|
|||||||
args += reduce(operator.add, [_get_global_args(node) for node in global_nodes], [])
|
args += reduce(operator.add, [_get_global_args(node) for node in global_nodes], [])
|
||||||
if overwrite_output:
|
if overwrite_output:
|
||||||
args += ['-y']
|
args += ['-y']
|
||||||
|
for i, arg in enumerate(args):
|
||||||
|
if arg.startswith('[') and arg.endswith(']'):
|
||||||
|
args[i] = f'"{args}"'
|
||||||
return args
|
return args
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user