summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-10-30 09:33:12 +0100
committerPaul B Mahol <onemda@gmail.com>2018-11-02 09:32:52 +0100
commit97e9e3504d36ef11efac60e300259689aaeb29fc (patch)
treeab9bbe6c0cfdb9b68471da4dc1b674d7165c60d3 /doc
parentd6d407d2d758b404af0ce6a8ff46bf164db020a1 (diff)
avfilter: add tpad filter
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi40
1 files changed, 40 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 4345a4931b..e67b8a647d 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -16755,6 +16755,46 @@ embedded peak information in display metadata is not reliable or when tone
mapping from a lower range to a higher range.
@end table
+@section tpad
+
+Temporarily pad video frames.
+
+The filter accepts the following options:
+
+@table @option
+@item start
+Specify number of delay frames before input video stream.
+
+@item stop
+Specify number of padding frames after input video stream.
+Set to -1 to pad indefinitely.
+
+@item start_mode
+Set kind of frames added to beginning of stream.
+Can be either @var{add} or @var{clone}.
+With @var{add} frames of solid-color are added.
+With @var{clone} frames are clones of first frame.
+
+@item stop_mode
+Set kind of frames added to end of stream.
+Can be either @var{add} or @var{clone}.
+With @var{add} frames of solid-color are added.
+With @var{clone} frames are clones of last frame.
+
+@item start_duration, stop_duration
+Specify the duration of the start/stop delay. See
+@ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
+for the accepted syntax.
+These options override @var{start} and @var{stop}.
+
+@item color
+Specify the color of the padded area. For the syntax of this option,
+check the @ref{color syntax,,"Color" section in the ffmpeg-utils
+manual,ffmpeg-utils}.
+
+The default value of @var{color} is "black".
+@end table
+
@anchor{transpose}
@section transpose