jfmdesign a écrit:anthoflush a écrit:jfmdesign a écrit:Voila après plusieurs essais,voila ce qui marche le mieux pour mon hw-50es + darbee sur vert 60
- Code: Tout sélectionner
#Blu-ray & 1080p
#Call FineSharp * UnsharpHQ
#Upscaling by Lanczos
#Chroma by Jinc
#Downscaling 1080p by Lanczos
SetMemoryMax(2048)
SetmtMode(5,8)
ffdshow_source()
SetMTMode(3)
#Algorithm [Lanczos]
ss=1.333
LanczosResize(taps=4,round(ss*last.width/8)*8,last.height)
LanczosResize(taps=4,last.width,round(ss*last.height/8)*8)
#Sharpen
FineSharp(mode=3,sstr=4,cstr=0,xstr=0.2,lstr=120,pstr=110,ldmp=4.1)
#Unsharp Mask
UnsharpHQ(THRESHOLD=65,SHARPSTR=5.2,SMOOTH=0.0)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
porquoi ne pas mettre ca
dispWidth = 2880
dispHeight = 1620
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/8)*8
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/8)*8
""" ) : Eval("""
newWidth=dispWidth
""" )
c est plus precis non?
plutot que ss 1.33
Tu peux ré-écrire le call comme tu le penses pour que je fasse un essai,?
celui la c est celui que j utilise par contre ça équivaut a ss1.5 et j utilise spline 144 mais au pire tu peut remplaçé la ligne " Spline144Resize(newWidth,newHeight)"
par l algo lanczos " LanczosResize(taps=4,newWidth,newHeight)"
et si tu cpu galère remplaçe le denoise par celui çi ou met maxr=1 ou maxr=2 dans la ligne TTempSmooth
#Denoiser
DeGrainMedian(limitY=6,limitUV=8,mode=3,interlaced=false)
SetMTMode(3,0)
ffdshow_source()
SetMTMode(2)
#Denoiser
TTempSmooth(maxr=3,lthresh=3,cthresh=2,lmdiff=2,cmdiff=1,strength=1,interlaced=false)
#Algorithm I [Spline144]
dispWidth = 2880
dispHeight = 1620
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/8)*8
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/8)*8
""" ) : Eval("""
newWidth=dispWidth
""" )
Spline144Resize(newWidth,newHeight)
#Sharpen
LimitedSharpenFasterHC(strength=100)
UnsharpHQ(THRESHOLD=20,SHARPSTR=5.0,SHOW=false)
#Deband
GradFun2db()
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
et si tu as le temps essaye celui la c est celui que j utilisait avant mais bon il faut que je re-compare les 2 dès que j ai le temps
#Avisynth in ffdshow
#TTempSmooth * LimitedSharpenFasterH *UnsharpHQ* GradFun2db
#Upscaling 4K by Spline144 in AviSynth with 2 layers
SetMTMode(3,0)
ffdshow_source()
SetMTMode(2)
#Denoiser
TTempSmooth(maxr=1,lthresh=3,cthresh=2,lmdiff=2,cmdiff=1,strength=1,interlaced=false)
#Algorithm I [Spline144]
dispWidth = 2880
dispHeight = 1620
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/8)*8
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/8)*8
""" ) : Eval("""
newWidth=dispWidth
""" )
Spline144Resize(newWidth,newHeight)
#Sharpen
LimitedSharpenFasterHC(strength=100)
#Deband
GradFun2db()
#Algorithm II [Spline144]
dispWidth = 3840
dispHeight = 2160
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/8)*8
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/8)*8
""" ) : Eval("""
newWidth=dispWidth
""" )
Spline144Resize(newWidth,newHeight)
#Unsharp
UnsharpHQ(THRESHOLD=20,SHARPSTR=5.0,SHOW=false)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
moins piqué mais "je trouve meilleur definition"