mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
add splits positional argument to specify the number of split nodes
This commit is contained in:
parent
5d78a2595d
commit
f0ea9614cd
@ -50,8 +50,8 @@ def filter_(stream_spec, filter_name, *args, **kwargs):
|
||||
|
||||
|
||||
@filter_operator()
|
||||
def split(stream):
|
||||
return FilterNode(stream, split.__name__)
|
||||
def split(stream, splits=None):
|
||||
return FilterNode(stream, split.__name__, args=[splits] if splits else [],)
|
||||
|
||||
|
||||
@filter_operator()
|
||||
|
Loading…
x
Reference in New Issue
Block a user