diff --git a/doc/html/genindex.html b/doc/html/genindex.html index cb0047b..ff483a1 100644 --- a/doc/html/genindex.html +++ b/doc/html/genindex.html @@ -90,6 +90,12 @@
|
+
Official documentation: drawbox
+ffmpeg.
filter_
(parent_node, filter_name, *args, **kwargs)¶Apply custom single-source filter.
+filter_
is normally used by higher-level filter functions such as hflip
, but if a filter implementation
+is missing from fmpeg-python
, you can call filter_
directly to have fmpeg-python
pass the filter name
+and arguments to ffmpeg verbatim.
Parameters: |
|
+
---|
This function is used internally by all of the other single-source filters (e.g. hflip
, crop
, etc.).
+For custom multi-source filters, see filter_multi
instead.
The function name is suffixed with _
in order avoid confusion with the standard python filter
function.
Example
+ffmpeg.input('in.mp4').filter_('hflip').output('out.mp4').run()
ffmpeg.
filter_multi
(parent_nodes, filter_name, *args, **kwargs)¶Apply custom multi-source filter.
+This is nearly identical to the filter
function except that it allows filters to be applied to multiple
+streams. It’s normally used by higher-level filter functions such as concat
, but if a filter implementation
+is missing from fmpeg-python
, you can call filter_multi
directly.
Note that because it applies to multiple streams, it can’t be used as an operator, unlike the filter
function
+(e.g. ffmpeg.input('in.mp4').filter_('hflip')
)
Parameters: |
|
+
---|
For custom single-source filters, see filter_multi
instead.
Example
+ffmpeg.filter_multi(ffmpeg.input('in1.mp4'), ffmpeg.input('in2.mp4'), 'concat', n=2).output('out.mp4').run()
ffmpeg.
hflip
(parent_node)¶