Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #x264 CMD:
- avs4x264mod.exe --x264-binary "x264_x64.exe" Source.avs --crf 16.5 --level 4.1 --preset placebo --deblock -3:-3 --subme 11 --me umh --bframes 16 --ipratio 1.30 --pbratio 1.20 --psy-rd 1.05 --aq-mode 3 --aq-strength 0.80 --qcomp 0.65 --merange 32 --zones=50,383,crf=13.5/4672,4835,crf=14.5/8155,8212,crf=14.5/8927,8987,crf=14.5/28064,28222,crf=14.5/31957,32048,crf=15.5/34563,38743,crf=17/48436,55848,crf=17/60930,61044,crf=13.5/61125,61424,crf=15.5/68624,68747,crf=15.5/71251,77476,crf=16.8/77477,80097,crf=15.5/81162,81797,crf=16.8/88736,88858,crf=14.5/89035,89104,crf=14.5/89395,89623,crf=15.5/95679,96023,crf=14/96024,98421,crf=15.5/98422,101030,crf=16.8/112209,112259,crf=12/112512,112585,crf=13.5/116925,117014,crf=13/117071,117296,crf=13/118925,127706,crf=13/132338,132472,crf=13/132661,132692,crf=13/136939,138850,crf=15.5/138915,139032,crf=12.5/139033,143677,crf=15/143678,143833,crf=12.5/143834,146221,crf=14.5/146222,150916,crf=15.5/150917,152730,crf=15/153741,163606,crf=16.8/163607,163853,crf=16/164543,167336,crf=15/173830,173908,crf=14/183287,183393,crf=14.5/185085,185193,crf=14.5/197870,197887,crf=12/206741,207655,crf=17 --vbv-bufsize 78125 --vbv-maxrate 62500 --no-fast-pskip --no-mbtree --no-dct-decimate --colormatrix "bt709" --output "1080p-HDVN.mkv" - 2> 1080p-HDVN.log
- # NOTES: Remember wiped out details worse than mild banding. (I rather have mild banding / blocking than wiped out details) So very carefully to use debanding filter. Always use different of filter style for banding scenes. When you finding banding scene to fix, always use least 3 differ of filter style, open 3 tab or more at avspmod to comparions which filter needed for banding scenes of source.
- #Source.avs:
- FFVideoSource("D:\HDMovie\Tenet 2020\Tenet 2020 BD-ESiR.mkv")
- fix1=f3kdb(grainY=10, dynamic_grain=true) # => This is Normal filter use for almost banding scene
- fix2=f3kdb(Y=45,grainY=0,grainC=0) # ==> This is Mild filter use for scene have the Face (where we need debanding also need keep details on the Face) Like this: pixhost.to/show/278/176956007_19.png + pixhost.to/show/278/176956048_22.png + pixhost.to/show/278/176956150_28.png
- fix3=f3kdb(range=25,grainY=10,Y=100) # ==> This is very Heavy filter use for where have very heavy banding (Only use for Intro - Outro or where not need keep details) Like this: pixhost.to/show/278/176956659_43.png
- ConditionalFilter(last, fix1, "SceneType", "<", "1")
- ConditionalFilter(last, fix2, "SceneType", "<", "2")
- ConditionalFilter(last, fix3, "SceneType", "<", "3")
- ConditionalReader("fix.txt", "SceneType")
- #fix.txt
- type int
- default 0
- R 50 383 1
- R 4672 4835 1
- R 8155 8212 1
- R 8605 8634 1
- R 8927 8987 1
- R 60930 61044 1
- R 80098 80195 1
- R 95679 96023 1
- R 105521 105593 1
- R 111335 111579 1
- R 112209 112259 1
- R 112512 112585 2
- R 116925 117014 1
- R 117071 117296 2
- R 118925 119106 2
- R 120883 120952 2
- R 120977 121090 2
- R 121165 121194 2
- R 121216 121271 2
- R 121590 121643 2
- R 132338 132472 1
- R 132661 132692 2
- R 133654 133783 1
- R 133857 133882 1
- R 138916 139032 1
- R 143678 143833 1
- R 145113 145261 1
- R 173830 173908 1
- R 183287 183393 1
- R 185085 185193 1
- R 197870 197887 3
Add Comment
Please, Sign In to add comment