fix: remove empty strings from returned arguments

This commit is contained in:
Amirhossein Barati 2024-06-26 17:54:42 +03:30
parent fd92a1f7ae
commit a2ed652c53
2 changed files with 2 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
.cache
.eggs
.idea/
.tox/
dist/
ffmpeg/tests/sample_data/out*.mp4

View File

@ -170,9 +170,6 @@ def get_args(stream_spec, overwrite_output=False):
args += reduce(operator.add, [_get_global_args(node) for node in global_nodes], [])
if overwrite_output:
args += ['-y']
for i, arg in enumerate(args):
if arg.startswith('[') and arg.endswith(']'):
args[i] = f'"{args}"'
return args
@ -192,7 +189,7 @@ def compile(stream_spec, cmd='ffmpeg', overwrite_output=False):
cmd = [cmd]
elif type(cmd) != list:
cmd = list(cmd)
return cmd + get_args(stream_spec, overwrite_output=overwrite_output)
return cmd + list(filter(lambda x: x != '', get_args(stream_spec, overwrite_output=overwrite_output)))
@output_operator()