Merge a2ed652c53d0d4a3cc6599f8023609130c9fb714 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Amirhossein Barati 2024-06-26 14:26:22 +00:00 committed by GitHub
commit a5fca09273
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

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

View File

@ -189,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()