Merge c1c627c679f3e5e28acd14131402dbc9a7e2d455 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Austin Bingham 2024-10-22 10:55:23 +02:00 committed by GitHub
commit 68bfcd9cd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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