[FFmpeg-cvslog] doc/encoders.texi: Document cinepak encoder

Tomas Härdin git at videolan.org
Thu May 12 13:03:13 EEST 2022


ffmpeg | branch: master | Tomas Härdin <git at haerdin.se> | Sat Apr  9 10:21:31 2022 +0200| [61bcd7737dca1f89235a63c97010822896735b09] | committer: Tomas Härdin

doc/encoders.texi: Document cinepak encoder

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=61bcd7737dca1f89235a63c97010822896735b09
---

 doc/encoders.texi | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/doc/encoders.texi b/doc/encoders.texi
index 966032a720..f34024ec14 100644
--- a/doc/encoders.texi
+++ b/doc/encoders.texi
@@ -1271,6 +1271,54 @@ follows.
 
 A64 / Commodore 64 multicolor charset encoder. @code{a64_multi5} is extended with 5th color (colram).
 
+ at section Cinepak
+
+Cinepak aka CVID encoder.
+Compatible with Windows 3.1 and vintage MacOS.
+
+ at subsection Options
+
+ at table @option
+ at item keyint_min @var{integer}
+Keyframe interval.
+A keyframe is inserted every @code{-keyint_min}-th frame.
+
+ at item q:v @var{integer}
+Quality factor. Lower is better. Higher gives lower bitrate.
+The following table lists bitrates when encoding akiyo_cif.y4m for various values of @code{-q:v} with @code{-keyint_min 100}:
+
+ at table @option
+ at item @code{-q:v 1} 1918 kb/s
+ at item @code{-q:v 2} 1735 kb/s
+ at item @code{-q:v 4} 1500 kb/s
+ at item @code{-q:v 10} 1064 kb/s
+ at item @code{-q:v 20} 826 kb/s
+ at item @code{-q:v 40} 553 kb/s
+ at item @code{-q:v 100} 394 kb/s
+ at item @code{-q:v 200} 311 kb/s
+ at item @code{-q:v 400} 266 kb/s
+ at item @code{-q:v 1000} 237 kb/s
+ at end table
+
+ at item max_extra_cb_iterations @var{integer}
+Max extra codebook recalculation passes, more is better and slower.
+
+ at item skip_empty_cb @var{boolean}
+Avoid wasting bytes, ignore vintage MacOS decoder.
+
+ at item max_strips @var{integer}
+ at itemx min_strips @var{integer}
+The minimum and maximum number of strips to use.
+Wider range sometimes improves quality.
+More strips is generally better quality but costs more bits.
+Vintage compatible is 1..3.
+
+ at item strip_number_adaptivity @var{integer}
+How much number of strips is allowed to change between frames.
+Higher is better but slower.
+
+ at end table
+
 @section GIF
 
 GIF image/animation encoder.



More information about the ffmpeg-cvslog mailing list