Advertisement
Bateau

x264 10-bit CLI Info - 2012.08.23

Aug 23rd, 2012
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. ++++++++++++++++++++++
  2. | x264 10-bit CLI Info |
  3. ++++++++++++++++++++++
  4.  
  5.  
  6. ---------------
  7. | Batch Script: |
  8. ---------------
  9.  
  10. 8 bit Input
  11. -----------
  12.  
  13. C:\TEMP\TEMP_VID-EDT\x264\x264-10bit.exe --demuxer avs --input-depth 8 --input-res 1920x1080 --level 5.1 --preset placebo --crf 18.0 --thread-input --threads 5 --deblock 0:0 --keyint 240 --min-keyint 24 --qcomp 0.75 --no-mbtree --merange 32 --me umh --subme 10 --psy-rd 1.0:0.10 --fade-compensate 0.5 --no-dct-decimate --non-deterministic --colormatrix bt709 --sar 1:1 --output "E:\TEMP\BECK\01\BECK 01.mkv" "E:\TEMP\BECK\01\BECK 01.avs" 2>"E:\TEMP\BECK\01\BECK 01.mkv.log"
  14.  
  15.  
  16. 16 bit Input
  17. ------------
  18.  
  19. C:\TEMP\TEMP_VID-EDT\avs2yuv\avs2yuv.exe -raw "E:\TEMP\BECK\01\BECK 01.avs" - | C:\TEMP\TEMP_VID-EDT\x264\x264-10bit.exe --demuxer raw --input-depth 16 --input-res 1920x1080 --fps 24000/1001 --level 5.1 --preset placebo --crf 18.0 --thread-input --threads 5 --deblock 0:0 --keyint 240 --min-keyint 24 --qcomp 0.75 --no-mbtree --merange 32 --me umh --subme 10 --psy-rd 1.0:0.10 --fade-compensate 0.5 --no-dct-decimate --non-deterministic --colormatrix bt709 --sar 1:1 --output "E:\TEMP\BECK\01\BECK 01.mkv" - 2>"E:\TEMP\BECK\01\BECK 01.mkv.log"
  20.  
  21.  
  22. --------
  23. | Notes: |
  24. --------
  25.  
  26. ---------
  27. | General |
  28. ---------
  29.  
  30. Root Directory:
  31. ---------------
  32.  
  33. address to the x264-10bit executable: "address"
  34.  
  35.  
  36. Resolution (input-res):
  37. -----------------------
  38.  
  39. any mod 4 by mod 2 resolution: --input-res "resolution"
  40.  
  41.  
  42. Quality (crf):
  43. --------------
  44.  
  45. good starting values are 16 - 22 (18 - 20): --crf "value"
  46.  
  47.  
  48. CPU Usage (threads):
  49. --------------------
  50.  
  51. amount of threads/cores you want used * 1.5 (round up if necessarey): --threads "value"
  52. *to restrict the x264 process to the threads/cores you want to be used open task manager and right click the process and set affinity starting with the highest core/thread first
  53.  
  54.  
  55. Output File (ouput):
  56. ------------------------
  57.  
  58. address of the output file including the file name and extention (mkv prefered): --output ""address""
  59.  
  60.  
  61. Input File:
  62. ---------------
  63.  
  64. address of the input file: ""address""
  65.  
  66.  
  67. Log File:
  68. ---------
  69.  
  70. address of the log file to output: 2>""address""
  71.  
  72.  
  73. -------
  74. | Basic |
  75. -------
  76.  
  77. Interval (keyint):
  78. -------------
  79.  
  80. 23.976 (24p): --keyint 240 --min-keyint 24
  81. 29.970 (30p): --keyint 300 --min-keyint 30
  82. 59.940 (60p): --keyint 600 --min-keyint 60
  83. VFR: --keyint 300 --min-keyint 24
  84. VFR with 60p: --keyint 600 --min-keyint 24
  85.  
  86.  
  87. Source (colormatrix):
  88. ---------------------
  89.  
  90. DVD: --colormatrix bt470bg
  91. BD: --colormatrix bt709
  92.  
  93.  
  94. Anamorphic (sar):
  95. -----------------
  96.  
  97. 4/3: --sar 4320:4739
  98. 16/9: --sar 5760:4739
  99. 1/1: --sar 1:1
  100.  
  101.  
  102. --------------
  103. | 16 bit Input |
  104. --------------
  105.  
  106. Input Type (demuxer):
  107. ----------------
  108.  
  109. 8 bit: --demuxer avs
  110. 16 bit: --demuxer raw
  111.  
  112.  
  113. Bit Depth (input-depth):
  114. ------------------------
  115.  
  116. 8 bit: --input-depth 8
  117. 16 bit: --input-depth 16
  118.  
  119.  
  120. File Input:
  121. -----------
  122.  
  123. 8 bit: ""file address""
  124. 16 bit: -
  125.  
  126.  
  127. FPS (fps)
  128. ---------
  129.  
  130. 8 bit: NN
  131. 16 bit:
  132. 23.976 (24p): --fps 24000/1001
  133. 29.970 (30p): --fps 30000/1001
  134. 59.940 (60p): --fps 60000/1001
  135. VFR: ??? see tcfile ???
  136. VFR with 60p: ??? see tcfile ???
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement