mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Fix docstrings for SourceNode
This commit is contained in:
parent
d9fd04a5c2
commit
4976356d54
@ -26,25 +26,22 @@ def input(filename, **kwargs):
|
|||||||
|
|
||||||
|
|
||||||
def source_multi_output(filter_name, *args, **kwargs):
|
def source_multi_output(filter_name, *args, **kwargs):
|
||||||
"""Apply custom filter with one or more outputs.
|
"""Source filter with one or more outputs.
|
||||||
|
|
||||||
This is the same as ``filter_`` except that the filter can produce more than one output.
|
This is the same as ``source`` except that the filter can produce more than one output.
|
||||||
|
|
||||||
To reference an output stream, use either the ``.stream`` operator or bracket shorthand:
|
To reference an output stream, use either the ``.stream`` operator or bracket shorthand.
|
||||||
|
|
||||||
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 SourceNode(filter_name, args=args, kwargs=kwargs)
|
return SourceNode(filter_name, args=args, kwargs=kwargs)
|
||||||
|
|
||||||
|
|
||||||
def source(filter_name, *args, **kwargs):
|
def source(filter_name, *args, **kwargs):
|
||||||
|
"""Source filter.
|
||||||
|
|
||||||
|
It works like `input`, but takes a source filter name instead of a file URL as the first argument.
|
||||||
|
|
||||||
|
Official documentation: `Sources <https://ffmpeg.org/ffmpeg-filters.html#Video-Sources>`__
|
||||||
|
"""
|
||||||
return source_multi_output(filter_name, *args, **kwargs).stream()
|
return source_multi_output(filter_name, *args, **kwargs).stream()
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user