mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +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()
|
@output_operator()
|
||||||
def overwrite_output(stream):
|
def overwrite_output(stream, **kwargs):
|
||||||
"""Overwrite output files without asking (ffmpeg ``-y`` option)
|
"""Overwrite output files without asking (ffmpeg ``-y`` option)
|
||||||
|
|
||||||
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#Main-options>`__
|
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()
|
@output_operator()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user