PDA

View Full Version : Unable to load: Toon-v1.0.dll


Seraphic-
23rd August 2008, 19:26
Hi,

Is anyone else having a problem loading "Toon-v1.0.dll" with the newest current build of Avisynth?
I keep getting an error that it is unable to load it. :confused:

AviSource("C:\Documents and Settings\User\Desktop\Test.avi")

import("C:\Documents and Settings\User\Desktop\AVISynth\Filters\avs\LimitedSharpenFaster.avs")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\MaskTools.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\warpsharp.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\mvtools.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\EEDI2.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\Toon-v1.0.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\aWarpSharp.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\SangNom.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\mt_masktools-26.dll")
LoadPlugin("C:\Documents and Settings\User\Desktop\AVISynth\Filters\dll\RemoveGrainSSE3.dll")
SharpAAMC()

function SharpAAMC(clip orig, int "aastr", float "ds", int "ShPre", int "ShPost", int "SmPost")
{
aastr=default(aastr,255) #antialiasing strength
ds=default(ds,0.2) #strokes darkening strength
ShPre=default(ShPre,80) #Presharpening
ShPost=default(ShPost,300) #Postsharpening
SmPost=default(SmPost,100) #Postsmoothing

a=orig
w=width(a)
h=height(a)
m=logic( a.DEdgeMask(0,255,0,255,"5 10 5 0 0 0 -5 -10 -5", divisor=4,Y=3,U=3,V=3)
\ ,a.DEdgeMask(0,255,0,255,"5 0 -5 10 0 -10 5 0 -5", divisor=4,Y=3,U=3,V=3)
\ ,"max").greyscale.levels(0,0.8,128,0,255,false)
b=a.Toon(ds).Warpsharp(depth=ShPre)
b=b.spline64resize(w*2,h*2).TurnLeft().SangNom(aa=aastr).TurnRight().SangNom(aa=aastr)
b=b.spline64resize(w,h).LimitedSharpenFaster(edgemode=1,strength=ShPost,overshoot=1,soft=SmPost)


mt_merge(a,b,m,Y=3,U=3,V=3)
sD=mt_makediff(a,last)
fv2 = a.MVAnalyse(isb=false,delta=2,idx=13)
fv1 = a.MVAnalyse(isb=false,delta=1,idx=13)
bv1 = a.MVAnalyse(isb=true, delta=1,idx=13)
bv2 = a.MVAnalyse(isb=true, delta=2,idx=13)

sDD = sD.MVDegrain2(bv1,fv1,bv2,fv2,idx=14)

reduc = 0.4
sDD = mt_lutxy(sD,sDD,"x 128 - abs y 128 - abs < x y ?").mergeluma(sDD,1.0-reduc)

a.mt_makediff(sDD,U=2,V=2)

return last
}

martino
23rd August 2008, 19:46
...with the newest current build of Avisynth?
What's that? 2.5.7? 2.5.8? 2.6?

Seraphic-
23rd August 2008, 19:50
What's that? 2.5.7? 2.5.8? 2.6?

AVS 2.5.8 RC3 [080730]

Just formatted my computer and this script was working before I formatted, it or their path locations were not changed or anything.
So don't see why it would return that error now.
Was also using 2.5.8 before also since the script uses "spline64".

Soulhunter
23rd August 2008, 19:56
http://forum.doom9.org/showthread.php?p=1062109#post1062109

Seraphic-
23rd August 2008, 20:03
http://forum.doom9.org/showthread.php?p=1062109#post1062109

Yup, that was the one I was using in the folder.
Downloaded it again and put it folder, but still says unable to load.

TheRyuu
23rd August 2008, 20:08
Yup, that was the one I was using in the folder.
Downloaded it again and put it folder, but still says unable to load.

Use 2.5.7 with newresize.dll
http://www.mediafire.com/?lobwkbnaot8

45tripp
23rd August 2008, 20:21
Yup, that was the one I was using in the folder.
Downloaded it again and put it folder, but still says unable to load.

what folder?

that was a link directing to:
Microsoft Visual C++ 2005 SP1 Redistributable Package

Seraphic-
23rd August 2008, 20:29
what folder?

that was a link directing to:
Microsoft Visual C++ 2005 SP1 Redistributable Package

My screen didn't scroll down all the way.
Thought he was talking about downloading another version of the Toon.dll file from his first post there.

http://forum.doom9.org/showthread.php?p=1062109#post1062109

Thanks, that was the problem.