aboutsummaryrefslogtreecommitdiffstats
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2023-10-22 16:18:14 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2023-10-26 15:46:18 +0530
commit2b300eb533a45c471f09f60885e3c38ed9e5df1b (patch)
tree9fe225eff3e2053b32b48e10b7db627258dfd8c9 /doc/filters.texi
parentef01ab262713d0ffa9d00a234bc03cc927fddb9e (diff)
downloadffmpeg-2b300eb533a45c471f09f60885e3c38ed9e5df1b.tar.gz
avfilter/vidstab: add option for file format specification
The vidstab library added support in Nov 2020 for writing/reading the transforms data in binary in addition to ASCII. The library default was changed to binary format but no changes were made to the AVfilters resulting in data file for writing or reading being always opened as text. This effectively broke the filters. Option added to vidstabdetect to specify file format and open files in both filters with the correct attributes.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index f5032ddf74..cc5d0d3f12 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -24618,6 +24618,19 @@ If set to 0, it is disabled. The frames are counted starting from 1.
Show fields and transforms in the resulting frames. It accepts an
integer in the range 0-2. Default value is 0, which disables any
visualization.
+
+@item fileformat
+Format for the transforms data file to be written.
+Acceptable values are
+
+@table @samp
+@item ascii
+Human-readable plain text
+
+@item binary
+Binary format, roughly 40% smaller than @code{ascii}. (@emph{default})
+@end table
+
@end table
@subsection Examples