mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Fixed formatting of filter_multi_output() docstring.
This commit is contained in:
parent
df129c7ba3
commit
c1c627c679
@ -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
|
To reference an output stream, use either the ``.stream`` operator or bracket
|
||||||
shorthand:
|
shorthand:
|
||||||
|
|
||||||
Example:
|
Example::
|
||||||
|
|
||||||
```
|
|
||||||
split = ffmpeg.input('in.mp4').filter_multi_output('split')
|
split = ffmpeg.input('in.mp4').filter_multi_output('split')
|
||||||
split0 = split.stream(0)
|
split0 = split.stream(0)
|
||||||
split1 = split[1]
|
split1 = split[1]
|
||||||
ffmpeg.concat(split0, split1).output('out.mp4').run()
|
ffmpeg.concat(split0, split1).output('out.mp4').run()
|
||||||
```
|
|
||||||
"""
|
"""
|
||||||
return FilterNode(
|
return FilterNode(
|
||||||
stream_spec, filter_name, args=args, kwargs=kwargs, max_inputs=None
|
stream_spec, filter_name, args=args, kwargs=kwargs, max_inputs=None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user