Advertisement
Guest User

Untitled

a guest
Dec 20th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. x264 --help
  2. x264 core:120 r2120 0c7dab9
  3. Syntax: x264 [options] -o outfile infile
  4.  
  5. Infile can be raw (in which case resolution is required),
  6. or YUV4MPEG (*.y4m),
  7. or Avisynth if compiled with support (no).
  8. or libav* formats if compiled with lavf support (no) or ffms support (no).
  9. Outfile type is selected by filename:
  10. .264 -> Raw bytestream
  11. .mkv -> Matroska
  12. .flv -> Flash Video
  13. .mp4 -> MP4 if compiled with GPAC support (no)
  14. Output bit depth: 8 (configured at compile time)
  15.  
  16. Options:
  17.  
  18. -h, --help List basic options
  19. --longhelp List more options
  20. --fullhelp List all options
  21.  
  22. Example usage:
  23.  
  24. Constant quality mode:
  25. x264 --crf 24 -o <output> <input>
  26.  
  27. Two-pass with a bitrate of 1000kbps:
  28. x264 --pass 1 --bitrate 1000 -o <output> <input>
  29. x264 --pass 2 --bitrate 1000 -o <output> <input>
  30.  
  31. Lossless:
  32. x264 --qp 0 -o <output> <input>
  33.  
  34. Maximum PSNR at the cost of speed and visual quality:
  35. x264 --preset placebo --tune psnr -o <output> <input>
  36.  
  37. Constant bitrate at 1000kbps with a 2 second-buffer:
  38. x264 --vbv-bufsize 2000 --bitrate 1000 -o <output> <input>
  39.  
  40. Presets:
  41.  
  42. --profile <string> Force the limits of an H.264 profile
  43. Overrides all settings.
  44. - baseline,main,high,high10,high422,high444
  45. --preset <string> Use a preset to select encoding settings [medium]
  46. Overridden by user settings.
  47. - ultrafast,superfast,veryfast,faster,fast
  48. - medium,slow,slower,veryslow,placebo
  49. --tune <string> Tune the settings for a particular type of source
  50. or situation
  51. Overridden by user settings.
  52. Multiple tunings are separated by commas.
  53. Only one psy tuning can be used at a time.
  54. - psy tunings: film,animation,grain,
  55. stillimage,psnr,ssim
  56. - other tunings: fastdecode,zerolatency
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement