Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ++++++++++++++++++++++
- | x264 10-bit CLI Info |
- ++++++++++++++++++++++
- ---------------
- | Batch Script: |
- ---------------
- 8 bit Input
- -----------
- 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"
- 16 bit Input
- ------------
- 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"
- --------
- | Notes: |
- --------
- ---------
- | General |
- ---------
- Root Directory:
- ---------------
- address to the x264-10bit executable: "address"
- Resolution (input-res):
- -----------------------
- any mod 4 by mod 2 resolution: --input-res "resolution"
- Quality (crf):
- --------------
- good starting values are 16 - 22 (18 - 20): --crf "value"
- CPU Usage (threads):
- --------------------
- amount of threads/cores you want used * 1.5 (round up if necessarey): --threads "value"
- *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
- Output File (ouput):
- ------------------------
- address of the output file including the file name and extention (mkv prefered): --output ""address""
- Input File:
- ---------------
- address of the input file: ""address""
- Log File:
- ---------
- address of the log file to output: 2>""address""
- -------
- | Basic |
- -------
- Interval (keyint):
- -------------
- 23.976 (24p): --keyint 240 --min-keyint 24
- 29.970 (30p): --keyint 300 --min-keyint 30
- 59.940 (60p): --keyint 600 --min-keyint 60
- VFR: --keyint 300 --min-keyint 24
- VFR with 60p: --keyint 600 --min-keyint 24
- Source (colormatrix):
- ---------------------
- DVD: --colormatrix bt470bg
- BD: --colormatrix bt709
- Anamorphic (sar):
- -----------------
- 4/3: --sar 4320:4739
- 16/9: --sar 5760:4739
- 1/1: --sar 1:1
- --------------
- | 16 bit Input |
- --------------
- Input Type (demuxer):
- ----------------
- 8 bit: --demuxer avs
- 16 bit: --demuxer raw
- Bit Depth (input-depth):
- ------------------------
- 8 bit: --input-depth 8
- 16 bit: --input-depth 16
- File Input:
- -----------
- 8 bit: ""file address""
- 16 bit: -
- FPS (fps)
- ---------
- 8 bit: NN
- 16 bit:
- 23.976 (24p): --fps 24000/1001
- 29.970 (30p): --fps 30000/1001
- 59.940 (60p): --fps 60000/1001
- VFR: ??? see tcfile ???
- VFR with 60p: ??? see tcfile ???
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement