Commit e1d61351 authored by Clément Bœsch's avatar Clément Bœsch

doc: fix and clarify libx264 encoding.

tune, fastfirstpass and profile are not available through x264opts.
Since some FFmpeg options don't match the names used in libx264, add
libx264 option names as a reference when needed. And last thing, x264
don't have a manpage ATM, so prefer the x264 --fullhelp over the
unexistant manpage reference.
parent d17e7070
...@@ -551,15 +551,12 @@ Set the encoding preset. ...@@ -551,15 +551,12 @@ Set the encoding preset.
@item tune @var{tune_name} @item tune @var{tune_name}
Tune the encoding params. Tune the encoding params.
Deprecated in favor of @var{x264opts}
@item fastfirstpass @var{bool} @item fastfirstpass @var{bool}
Use fast settings when encoding first pass, default value is 1. Use fast settings when encoding first pass, default value is 1.
Deprecated in favor of @var{x264opts}.
@item profile @var{profile_name} @item profile @var{profile_name}
Set profile restrictions. Set profile restrictions.
Deprecated in favor of @var{x264opts}.
@item level @var{level} @item level @var{level}
Specify level (as defined by Annex A). Specify level (as defined by Annex A).
...@@ -567,14 +564,14 @@ Deprecated in favor of @var{x264opts}. ...@@ -567,14 +564,14 @@ Deprecated in favor of @var{x264opts}.
@item passlogfile @var{filename} @item passlogfile @var{filename}
Specify filename for 2 pass stats. Specify filename for 2 pass stats.
Deprecated in favor of @var{x264opts}. Deprecated in favor of @var{x264opts} (see @var{stats} libx264 option).
@item wpredp @var{wpred_type} @item wpredp @var{wpred_type}
Specify Weighted prediction for P-frames. Specify Weighted prediction for P-frames.
Deprecated in favor of @var{x264opts}. Deprecated in favor of @var{x264opts} (see @var{weightp} libx264 option).
@item x264opts @var{options} @item x264opts @var{options}
Allow to set any x264 option, see x264 manual for a list. Allow to set any x264 option, see x264 --fullhelp for a list.
@var{options} is a list of @var{key}=@var{value} couples separated by @var{options} is a list of @var{key}=@var{value} couples separated by
":". ":".
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment