mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
fix: remove empty strings from returned arguments
This commit is contained in:
parent
fd92a1f7ae
commit
a2ed652c53
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
.cache
|
.cache
|
||||||
.eggs
|
.eggs
|
||||||
|
.idea/
|
||||||
.tox/
|
.tox/
|
||||||
dist/
|
dist/
|
||||||
ffmpeg/tests/sample_data/out*.mp4
|
ffmpeg/tests/sample_data/out*.mp4
|
||||||
|
@ -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], [])
|
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
|
||||||
|
|
||||||
|
|
||||||
@ -192,7 +189,7 @@ def compile(stream_spec, cmd='ffmpeg', overwrite_output=False):
|
|||||||
cmd = [cmd]
|
cmd = [cmd]
|
||||||
elif type(cmd) != list:
|
elif type(cmd) != list:
|
||||||
cmd = list(cmd)
|
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()
|
@output_operator()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user