playa21 a écrit:Tester 1080P avec lanczos :
- Code: Tout sélectionner
SetMTMode(3,0)
ffdshow_source()
SetMTMode(2)
#UpScale by Lanczcos3
ss=1.333
lanczosResize(taps=3,round(ss*last.width/8)*8,last.height)
lanczosResize(taps=3,last.width,round(ss*last.height/8)*8)
#Sharpen
LimitedSharpenFasterHC(strength=40)
#Unsharp Mask
unsharpHQ(str=0.8)
#Deband
GradFun2db()
#Denoiser
DeGrainMedian(limitY=6,limitUV=8,mode=3,interlaced=false)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
Tester 1080P avec spline144 :
- Code: Tout sélectionner
SetMTMode(3,0)
ffdshow_source()
SetMTMode(2)
#UpSize by Spline144
ss=1.333
spline144resize(round(ss*last.width/8)*8,last.height)
spline144resize(last.width,round(ss*last.height/8)*8)
#Sharpen
LimitedSharpenFasterHC(strength=40)
#Unsharp Mask
unsharpHQ(str=0.8)
#Deband
GradFun2db()
#Denoiser
DeGrainMedian(limitY=6,limitUV=8,mode=3,interlaced=false)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
Tester 1080P avec Robidoux :
- Code: Tout sélectionner
SetMTMode(3,0)
ffdshow_source()
SetMTMode(2)
#UpSize by robidoux
dispWidth = 2560
dispHeight = 1440
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=40)
#Unsharp Mask
unsharpHQ(str=0.8)
#Deband
GradFun2db()
#Denoiser
DeGrainMedian(limitY=6,limitUV=8,mode=3,interlaced=false)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
je vais tester ces 3 là, voir ce qui passe...
Ca pourra aider les gens comme moi qui ont des config moyennes
(j'éspère que le robidoux est bon, je connais pas cet algo
)
Oyé Oyé
Donc j'ai testé les scripts avec pour rappel la config : i3 4130T + HD 5750 + 4go + benq W1070
Avec un denoiser, sur n'importe quel script c'est dropped frame permanent -> inutilisable.
Mon script préferé va au Robidoux avec jinc 3tap, chroma upscaling et lanczos 4 taps. Unsharpen 10."
Détails impressionnants!!! Image bien nettes et peu sharpée.
J'ai eu 4 dropped frame sur un film full screen pour 2h... je vais légèrement overlocker le i3, pour ne plus en avoir du tt.. -> je suis en bitstream donc reclock ne marche pas, c'est peut-être la cause des drops.
Pour les moyennes configs, ça peut aider
Merci!