mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge a2ed652c53d0d4a3cc6599f8023609130c9fb714 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
a5fca09273
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
.cache
|
||||
.eggs
|
||||
.idea/
|
||||
.tox/
|
||||
dist/
|
||||
ffmpeg/tests/sample_data/out*.mp4
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user