Commit 6cebc815 authored by stefano's avatar stefano

Add examples in documentation showing how to avoid to decode audio and

output video in pass 1 for 2-pass encoding.
Patch by Erwan Ducroquet erwan _dot_ ducroquet _at_ gmail _dot_ com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14736 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 431ab039
......@@ -429,6 +429,12 @@ Select the pass number (1 or 2). It is useful to do two pass
encoding. The statistics of the video are recorded in the first
pass and the video is generated at the exact requested bitrate
in the second pass.
On pass 1, you may just deactivate audio and set output to null,
examples for Windows and Unix:
@example
ffmpeg -i foo.mov -vcodec libxvid -pass 1 -an -f rawvideo -y NUL
ffmpeg -i foo.mov -vcodec libxvid -pass 1 -an -f rawvideo -y /dev/null
@end example
@item -passlogfile @var{file}
Set two pass logfile name to @var{file}.
......
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