Advertisement
Guest User

ffmpeg man page is WRONG and damaged my original source file

a guest
Aug 25th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. from man ffmpeg
  2.  
  3. -pass n
  4. Select the pass number (1 or 2). It is used to do two-pass video encoding. The statistics of
  5. the video are recorded in the first pass into a log file (see also the option -passlogfile),
  6. and in the second pass that log file is used to generate the video at the exact requested
  7. bitrate. On pass 1, you may just deactivate audio and set output to null, examples for
  8. Windows and Unix:
  9.  
  10. ffmpeg -i foo.mov -vcodec libxvid -pass 1 -an -f rawvideo -y NUL
  11. ffmpeg -i foo.mov -vcodec libxvid -pass 1 -an -f rawvideo -y /dev/null
  12.  
  13. -passlogfile prefix
  14. Set two-pass log file name prefix to prefix, the default file name prefix is ``ffmpeg2pass''.
  15. The complete file name will be PREFIX-N.log, where N is a number specific to the output
  16. stream.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement