Log in

View Full Version : SharpAAMCmod slows down, VDub freezes...


ianken
18th June 2011, 07:48
I'm using this on some haloed goo.

The problem is this: the script starts out around 8fps and then just tarts slowing down. By about frame 300 it's stopped.

My machine is decent. I7 970 12GB. The CPU's not even breaking a sweat. I tried going with setmtmode, but while it starts out fast it crashes vdub (rather than just hang).

Ideas?


a=mpeg2source("test.d2v")
a =animeivtc(a,mode=4,omode=2,pass=2,aa=0)
a=dehalo_alpha(a,rx=1.5,ry=1.5,darkstr=2,brightstr=2,lowsens=50,highsens=50,ss=2)
a=SharpAAMCmod(a)
return a

Overdrive80
19th June 2011, 12:56
Try it:


mpeg2source("test.d2v")
animeivtc(mode=4,omode=2,pass=2,aa=0)
dehalo_alpha(last,rx=1.5,ry=1.5,darkstr=2,brightstr=2,lowsens=50,highsens=50,ss=2)
SharpAAMCmod()


SetMTMode not run correctly, other way is open various instances of vdub. All explain in manual AnimeIVTC

Gavino
19th June 2011, 14:35
a=mpeg2source("test.d2v")
a =animeivtc(a,mode=4,omode=2,pass=2,aa=0)
a=dehalo_alpha(a,rx=1.5,ry=1.5,darkstr=2,brightstr=2,lowsens=50,highsens=50,ss=2)
a=SharpAAMCmod(a)
return a

Try it:
mpeg2source("test.d2v")
animeivtc(mode=4,omode=2,pass=2,aa=0)
dehalo_alpha(last,rx=1.5,ry=1.5,darkstr=2,brightstr=2,lowsens=50,highsens=50,ss=2)
SharpAAMCmod()
I don't see your your point.
That code is (in effect) exactly the same as ianken's original.