aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2013-05-24 12:28:48 -0700
committerTimothy Gu <timothygu99@gmail.com>2013-08-28 09:35:18 -0700
commita5fe40f728e670de5f3a4ebfbaeccc5186cfe42e (patch)
tree2a3f2cab1eed28c0d0c47f8dd4f19ae307c8e08e
parent359bfa4c272adf9c3b1c59d123fadb57a9e2f8cb (diff)
downloadffmpeg-a5fe40f728e670de5f3a4ebfbaeccc5186cfe42e.tar.gz
doc/encoders: Add documentation for libmp3lame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 4703a345fb41b14fe28f7e6bf7f60bb2213aa9e0) Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r--doc/encoders.texi29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi
index a5325f45a8..3d9517310d 100644
--- a/doc/encoders.texi
+++ b/doc/encoders.texi
@@ -412,6 +412,35 @@ Selected by Encoder (default)
@end table
+@section libmp3lame
+
+LAME (Lame Ain't an MP3 Encoder) MP3 encoder wrapper
+
+Requires the presence of the libmp3lame headers and library during
+configuration. You need to explicitly configure the build with
+@code{--enable-libmp3lame}.
+
+@subsection Option Mapping
+
+The following options are supported by the libmp3lame wrapper,
+the LAME-equivalent options follow the FFmpeg ones.
+
+@multitable @columnfractions .2 .2
+@item FFmpeg @tab LAME
+@item b @tab b
+FFmpeg @code{b} option is expressed in bits/s, lame @code{bitrate}
+in kilobits/s.
+@item q @tab V
+Quality setting for VBR.
+@item compression_level @tab q
+Algorithm quality. Valid options are integers from 0-9.
+@item reservoir @tab N.A.
+Enable use of bit reservoir. LAME has this enabled by default.
+@item joint_stereo @tab -m j
+Enables the the encoder to use (on a frame by frame basis) either L/R
+stereo or mid/side stereo.
+@end multitable
+
@c man end AUDIO ENCODERS
@chapter Video Encoders