View Single Post
Old 30th December 2014, 21:39   #6  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
Is that your script?

You only use SetMTMode() when changing the mode and most filters do not like mode 1:

Code:
SetMemoryMax(1700)
SetMTMode(3)
MPEG2Source("C:\Iceberg.d2v")
SetMTMode(2)
AutoAdjust()
QTGMC( Preset="Slower",FPSDivisor=2,Sharpness=0.2,SubPel=4,truemotion=true,chromamotion=true,globalmotion=true,ProgSADMask=18.0,edithreads=2)
SuperToon(power=0.2, mode=2, Nthr=30, Nstr=0, Ncap=25, Lthr=0, Hthr=255, Lcap=255, cont=180, show=false)
SuperToon(power=16, mode=3, Nthr=4, Nstr=0, Ncap=150, Lthr=0, Hthr=255, Lcap=255, cont=180, show=false)
DeHalo_alpha_2BD(rx=2.0, ry=2.0, darkstr=1.0, brightstr=1.0, lowsens=15, highsens=20, ss=22.0)
GradFun2DBmod(thr=1.0, mode=2, str=0.8, strC=0, temp=50, adapt=0, mask=True, radius=4, range=4, show=False)
UnsharpHQ(THRESHOLD=5, SHARPSTR=0.7, SMOOTH=0.4)
LSFmod(defaults="fast", smode=4, [snip])
MSharpen(threshold=2, strength=74, mask=false, highq=true)
awarpsharp2(thresh=117,blur=12,type=1,depth=22,chroma=3)
LSFmod(defaults="fast",smethod=2,smode=3, [snip])
GradFun2DBmod(thr=1.0, mode=2, str=0.8, strC=0, temp=50, adapt=0, mask=True, radius=4, range=4, show=False)
LSFmod(defaults="fast", smode=3,smethod=4 [snip])
nnedi3_rpow2(rfactor=8,nsize=3,nns=4,cshift="Spline64Resize")
nnedi3_resize16(target_width=1440, target_height=1080, [snip])
If you really think you need that many filters I will not argue over individual lines but that looks too filtered to me, sometimes less is more. You do a lot of damage with so much filtering. It is also very obvious why it is so slow.

Maybe I will argue with one pair of lines specifically, why nnedi3_rpow2 and nnedi3_resize16? Why not simply use nnedi3_resize16? What is AutoAdjust() doing to help? (oops, another one)
Asmodian is offline   Reply With Quote