diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2023-10-22 16:18:14 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2023-10-26 15:46:18 +0530 |
commit | 2b300eb533a45c471f09f60885e3c38ed9e5df1b (patch) | |
tree | 9fe225eff3e2053b32b48e10b7db627258dfd8c9 /doc/filters.texi | |
parent | ef01ab262713d0ffa9d00a234bc03cc927fddb9e (diff) | |
download | ffmpeg-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.texi | 13 |
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 |