diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-10-30 09:33:12 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-02 09:32:52 +0100 |
commit | 97e9e3504d36ef11efac60e300259689aaeb29fc (patch) | |
tree | ab9bbe6c0cfdb9b68471da4dc1b674d7165c60d3 /doc/filters.texi | |
parent | d6d407d2d758b404af0ce6a8ff46bf164db020a1 (diff) | |
download | ffmpeg-97e9e3504d36ef11efac60e300259689aaeb29fc.tar.gz |
avfilter: add tpad filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 40 |
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 |