mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Merge a2ed652c53d0d4a3cc6599f8023609130c9fb714 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
a5fca09273
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
|
||||||
|
@ -189,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