Changes between Version 19 and Version 20 of x264EncodingGuide


Ignore:
Timestamp:
09/06/2012 06:18:49 PM (9 months ago)
Author:
rogerdpack
Comment:

elaborate 10 bit, what little I know about it, anyway

Legend:

Unmodified
Added
Removed
Modified
  • x264EncodingGuide

    v19 v20  
    6767ffmpeg -i input -c:v libx264 -preset veryslow -qp 0 output.mkv 
    6868}}} 
     69 
     70=== Bit Depth === 
     71 
     72You can get 10 bit output by compiling libx264 with its "10 bit" configure option set, then linking your ffmpeg against that.  Then use libx264 -profile high10 or the like.  In order to get high444 profile, you'd have to make sure to pass it yuv422 type input. 
    6973 
    7074----