mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
262 lines
11 KiB
Python
262 lines
11 KiB
Python
from __future__ import unicode_literals
|
|
from .nodes import (
|
|
FilterNode,
|
|
filter_operator,
|
|
)
|
|
|
|
|
|
@filter_operator()
|
|
def filter_multi_output(stream_spec, filter_name, *args, **kwargs):
|
|
"""Apply custom filter with one or more outputs.
|
|
|
|
This is the same as ``filter_`` except that the filter can produce more than one output.
|
|
|
|
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 FilterNode(stream_spec, filter_name, args=args, kwargs=kwargs, max_inputs=None)
|
|
|
|
|
|
@filter_operator()
|
|
def filter_(stream_spec, filter_name, *args, **kwargs):
|
|
"""Apply custom 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.
|
|
|
|
Args:
|
|
stream_spec: a Stream, list of Streams, or label-to-Stream dictionary mapping
|
|
filter_name: ffmpeg filter name, e.g. `colorchannelmixer`
|
|
*args: list of args to pass to ffmpeg verbatim
|
|
**kwargs: list of keyword-args to pass to ffmpeg verbatim
|
|
|
|
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()``
|
|
"""
|
|
return filter_multi_output(stream_spec, filter_name, *args, **kwargs).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def setpts(stream, expr):
|
|
"""Change the PTS (presentation timestamp) of the input frames.
|
|
|
|
Args:
|
|
expr: The expression which is evaluated for each frame to construct its timestamp.
|
|
|
|
Official documentation: `setpts, asetpts <https://ffmpeg.org/ffmpeg-filters.html#setpts_002c-asetpts>`__
|
|
"""
|
|
return FilterNode(stream, setpts.__name__, args=[expr]).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def trim(stream, **kwargs):
|
|
"""Trim the input so that the output contains one continuous subpart of the input.
|
|
|
|
Args:
|
|
start: Specify the time of the start of the kept section, i.e. the frame with the timestamp start will be the
|
|
first frame in the output.
|
|
end: Specify the time of the first frame that will be dropped, i.e. the frame immediately preceding the one
|
|
with the timestamp end will be the last frame in the output.
|
|
start_pts: This is the same as start, except this option sets the start timestamp in timebase units instead of
|
|
seconds.
|
|
end_pts: This is the same as end, except this option sets the end timestamp in timebase units instead of
|
|
seconds.
|
|
duration: The maximum duration of the output in seconds.
|
|
start_frame: The number of the first frame that should be passed to the output.
|
|
end_frame: The number of the first frame that should be dropped.
|
|
|
|
Official documentation: `trim <https://ffmpeg.org/ffmpeg-filters.html#trim>`__
|
|
"""
|
|
return FilterNode(stream, trim.__name__, kwargs=kwargs).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def overlay(main_parent_node, overlay_parent_node, eof_action='repeat', **kwargs):
|
|
"""Overlay one video on top of another.
|
|
|
|
Args:
|
|
x: Set the expression for the x coordinates of the overlaid video on the main video. Default value is 0. In
|
|
case the expression is invalid, it is set to a huge value (meaning that the overlay will not be displayed
|
|
within the output visible area).
|
|
y: Set the expression for the y coordinates of the overlaid video on the main video. Default value is 0. In
|
|
case the expression is invalid, it is set to a huge value (meaning that the overlay will not be displayed
|
|
within the output visible area).
|
|
eof_action: The action to take when EOF is encountered on the secondary input; it accepts one of the following
|
|
values:
|
|
|
|
* ``repeat``: Repeat the last frame (the default).
|
|
* ``endall``: End both streams.
|
|
* ``pass``: Pass the main input through.
|
|
|
|
eval: Set when the expressions for x, and y are evaluated.
|
|
It accepts the following values:
|
|
|
|
* ``init``: only evaluate expressions once during the filter initialization or when a command is
|
|
processed
|
|
* ``frame``: evaluate expressions for each incoming frame
|
|
|
|
Default value is ``frame``.
|
|
shortest: If set to 1, force the output to terminate when the shortest input terminates. Default value is 0.
|
|
format: Set the format for the output video.
|
|
It accepts the following values:
|
|
|
|
* ``yuv420``: force YUV420 output
|
|
* ``yuv422``: force YUV422 output
|
|
* ``yuv444``: force YUV444 output
|
|
* ``rgb``: force packed RGB output
|
|
* ``gbrp``: force planar RGB output
|
|
|
|
Default value is ``yuv420``.
|
|
rgb (deprecated): If set to 1, force the filter to accept inputs in the RGB color space. Default value is 0.
|
|
This option is deprecated, use format instead.
|
|
repeatlast: If set to 1, force the filter to draw the last overlay frame over the main input until the end of
|
|
the stream. A value of 0 disables this behavior. Default value is 1.
|
|
|
|
Official documentation: `overlay <https://ffmpeg.org/ffmpeg-filters.html#overlay-1>`__
|
|
"""
|
|
kwargs['eof_action'] = eof_action
|
|
return FilterNode([main_parent_node, overlay_parent_node], overlay.__name__, kwargs=kwargs, max_inputs=2).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def hflip(stream):
|
|
"""Flip the input video horizontally.
|
|
|
|
Official documentation: `hflip <https://ffmpeg.org/ffmpeg-filters.html#hflip>`__
|
|
"""
|
|
return FilterNode(stream, hflip.__name__).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def vflip(stream):
|
|
"""Flip the input video vertically.
|
|
|
|
Official documentation: `vflip <https://ffmpeg.org/ffmpeg-filters.html#vflip>`__
|
|
"""
|
|
return FilterNode(stream, vflip.__name__).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def drawbox(stream, x, y, width, height, color, thickness=None, **kwargs):
|
|
"""Draw a colored box on the input image.
|
|
|
|
Args:
|
|
x: The expression which specifies the top left corner x coordinate of the box. It defaults to 0.
|
|
y: The expression which specifies the top left corner y coordinate of the box. It defaults to 0.
|
|
width: Specify the width of the box; if 0 interpreted as the input width. It defaults to 0.
|
|
heigth: Specify the height of the box; if 0 interpreted as the input height. It defaults to 0.
|
|
color: Specify the color of the box to write. For the general syntax of this option, check the "Color" section
|
|
in the ffmpeg-utils manual. If the special value invert is used, the box edge color is the same as the
|
|
video with inverted luma.
|
|
thickness: The expression which sets the thickness of the box edge. Default value is 3.
|
|
w: Alias for ``width``.
|
|
h: Alias for ``height``.
|
|
c: Alias for ``color``.
|
|
t: Alias for ``thickness``.
|
|
|
|
Official documentation: `drawbox <https://ffmpeg.org/ffmpeg-filters.html#drawbox>`__
|
|
"""
|
|
if thickness:
|
|
kwargs['t'] = thickness
|
|
return FilterNode(stream, drawbox.__name__, args=[x, y, width, height, color], kwargs=kwargs).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def concat(*streams, **kwargs):
|
|
"""Concatenate audio and video streams, joining them together one after the other.
|
|
|
|
The filter works on segments of synchronized video and audio streams. All segments must have the same number of
|
|
streams of each type, and that will also be the number of streams at output.
|
|
|
|
Args:
|
|
unsafe: Activate unsafe mode: do not fail if segments have a different format.
|
|
|
|
Related streams do not always have exactly the same duration, for various reasons including codec frame size or
|
|
sloppy authoring. For that reason, related synchronized streams (e.g. a video and its audio track) should be
|
|
concatenated at once. The concat filter will use the duration of the longest stream in each segment (except the
|
|
last one), and if necessary pad shorter audio streams with silence.
|
|
|
|
For this filter to work correctly, all segments must start at timestamp 0.
|
|
|
|
All corresponding streams must have the same parameters in all segments; the filtering system will automatically
|
|
select a common pixel format for video streams, and a common sample format, sample rate and channel layout for
|
|
audio streams, but other settings, such as resolution, must be converted explicitly by the user.
|
|
|
|
Different frame rates are acceptable but will result in variable frame rate at output; be sure to configure the
|
|
output file to handle it.
|
|
|
|
Official documentation: `concat <https://ffmpeg.org/ffmpeg-filters.html#concat>`__
|
|
"""
|
|
kwargs['n'] = len(streams)
|
|
return FilterNode(streams, concat.__name__, kwargs=kwargs, max_inputs=None).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def zoompan(stream, **kwargs):
|
|
"""Apply Zoom & Pan effect.
|
|
|
|
Args:
|
|
zoom: Set the zoom expression. Default is 1.
|
|
x: Set the x expression. Default is 0.
|
|
y: Set the y expression. Default is 0.
|
|
d: Set the duration expression in number of frames. This sets for how many number of frames effect will last
|
|
for single input image.
|
|
s: Set the output image size, default is ``hd720``.
|
|
fps: Set the output frame rate, default is 25.
|
|
z: Alias for ``zoom``.
|
|
|
|
Official documentation: `zoompan <https://ffmpeg.org/ffmpeg-filters.html#zoompan>`__
|
|
"""
|
|
return FilterNode(stream, zoompan.__name__, kwargs=kwargs).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def hue(stream, **kwargs):
|
|
"""Modify the hue and/or the saturation of the input.
|
|
|
|
Args:
|
|
h: Specify the hue angle as a number of degrees. It accepts an expression, and defaults to "0".
|
|
s: Specify the saturation in the [-10,10] range. It accepts an expression and defaults to "1".
|
|
H: Specify the hue angle as a number of radians. It accepts an expression, and defaults to "0".
|
|
b: Specify the brightness in the [-10,10] range. It accepts an expression and defaults to "0".
|
|
|
|
Official documentation: `hue <https://ffmpeg.org/ffmpeg-filters.html#hue>`__
|
|
"""
|
|
return FilterNode(stream, hue.__name__, kwargs=kwargs).stream()
|
|
|
|
|
|
@filter_operator()
|
|
def colorchannelmixer(stream, *args, **kwargs):
|
|
"""Adjust video input frames by re-mixing color channels.
|
|
|
|
Official documentation: `colorchannelmixer <https://ffmpeg.org/ffmpeg-filters.html#colorchannelmixer>`__
|
|
"""
|
|
return FilterNode(stream, colorchannelmixer.__name__, kwargs=kwargs).stream()
|
|
|
|
|
|
__all__ = [
|
|
'colorchannelmixer',
|
|
'concat',
|
|
'drawbox',
|
|
'filter_',
|
|
'hflip',
|
|
'hue',
|
|
'overlay',
|
|
'setpts',
|
|
'trim',
|
|
'vflip',
|
|
'zoompan',
|
|
]
|