mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Added 'kwargs' option to 'overwrite_output'
This commit is contained in:
parent
df129c7ba3
commit
2803574b2b
@ -39,12 +39,12 @@ def global_args(stream, *args):
|
||||
|
||||
|
||||
@output_operator()
|
||||
def overwrite_output(stream):
|
||||
def overwrite_output(stream, **kwargs):
|
||||
"""Overwrite output files without asking (ffmpeg ``-y`` option)
|
||||
|
||||
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#Main-options>`__
|
||||
"""
|
||||
return GlobalNode(stream, overwrite_output.__name__, ['-y']).stream()
|
||||
return GlobalNode(stream, overwrite_output.__name__, ['-y'], kwargs=kwargs).stream()
|
||||
|
||||
|
||||
@output_operator()
|
||||
|
Loading…
x
Reference in New Issue
Block a user