mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge c1c627c679f3e5e28acd14131402dbc9a7e2d455 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
68bfcd9cd8
@ -14,14 +14,12 @@ def filter_multi_output(stream_spec, filter_name, *args, **kwargs):
|
||||
To reference an output stream, use either the ``.stream`` operator or bracket
|
||||
shorthand:
|
||||
|
||||
Example:
|
||||
Example::
|
||||
|
||||
```
|
||||
split = ffmpeg.input('in.mp4').filter_multi_output('split')
|
||||
split0 = split.stream(0)
|
||||
split1 = split[1]
|
||||
ffmpeg.concat(split0, split1).output('out.mp4').run()
|
||||
```
|
||||
"""
|
||||
return FilterNode(
|
||||
stream_spec, filter_name, args=args, kwargs=kwargs, max_inputs=None
|
||||
|
Loading…
x
Reference in New Issue
Block a user