comparison DOCS/xml/en/encoding-guide.xml @ 16277:d5ff51c5970f

Encoding setting examples for x264
author gpoirier
date Sat, 20 Aug 2005 20:13:03 +0000
parents 45b339e1b93b
children 67dc03c037e7
comparison
equal deleted inserted replaced
16276:414ece37801b 16277:d5ff51c5970f
3199 would have gotten just by fiddling with the deblocking filter. 3199 would have gotten just by fiddling with the deblocking filter.
3200 </para></listitem> 3200 </para></listitem>
3201 </itemizedlist> 3201 </itemizedlist>
3202 </sect3> 3202 </sect3>
3203 </sect2> 3203 </sect2>
3204
3205 <sect2 id="menc-feat-x264-example-settings">
3206 <title>Encoding settings examples</title>
3207
3208 <para>
3209 The following settings are examples of different encoding
3210 options combinations that affect the speed VS quality tradeoff
3211 given the same target bitrate.
3212
3213 If you are aiming at perfect quality without too much thinking and
3214 no size limitation, a low constant quantizer encode (like with
3215 <option>qp_constant=18</option>) with no B-frames
3216 (<option>bframes=0</option>) will probably look very good, but
3217 will needlessly spend lots of bits to encode details that could be
3218 coded more wisely using some advanced settings.
3219 </para>
3220
3221 <para>
3222 All the encoding settings were tested on a 720x448 @30000/1001 fps
3223 video sample, the target bitrate was 900kbps, and the machine was an
3224 AMD-64 3400+ at 2400 Mhz in 64 bits mode.
3225 Each encoding setting is followed by the encoding speed (in frames
3226 per seconds), the compression efficiency loss (in percent of bitrate)
3227 compared to the "very high quality" setting, and the PSNR loss (in dB).
3228 Please understand that depending on your source your machine type
3229 and the development breakthrough, you may get very different results.
3230 </para>
3231
3232 <itemizedlist>
3233 <listitem><para><emphasis role="bold">Very high quality:</emphasis>
3234 <option>subq=6:4x4mv:8x8dct:me=3:frameref=5:bframes=3:b_pyramid:weight_b</option>
3235 6fps, 0%, 0dB.
3236 </para></listitem>
3237 <listitem><para><emphasis role="bold">High quality:</emphasis>
3238 <option>subq=5:4x4mv:8x8dct:frameref=2:bframes=3:b_pyramid:weight_b:psnr</option>
3239 13fps, -13%, -0.89dB.
3240 </para></listitem>
3241 <listitem><para><emphasis role="bold">Fast:</emphasis>
3242 <option>subq=4:bframes=2:b_pyramid:weight_b:psnr</option>
3243 17fps, -20%, -1.48dB.
3244 </para></listitem>
3245 </itemizedlist>
3246 </sect2>
3247
3204 </sect1> 3248 </sect1>
3205 3249
3206 <sect1 id="menc-feat-vcd-dvd"> 3250 <sect1 id="menc-feat-vcd-dvd">
3207 <title>Using MEncoder to create VCD/SVCD/DVD-compliant files.</title> 3251 <title>Using MEncoder to create VCD/SVCD/DVD-compliant files.</title>
3208 3252