Log in

View Full Version : Virtual dub Crashing with AviSynth


Zerox20
21st April 2003, 02:35
I am trying to load a AVISYNTH 2 script, and my virtual dub never gives me an error and just closes when I click it.

AviSource("clip1.avi")
LoadPlugin("C:\Program Files\AviSynth2\plugins\Unfilter_Old\UnFilter.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\UnDot.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\TemporalCleanerOld.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\asharp.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\SmoothHiQ.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\Convolution3D.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\PeachSmoother.dll")
asharp(2,2,1,true)
Undot()
unfilter(10,10)
TemporalCleaner(2,10)
PeachSmoother(NoiseReduction=45,Stability=15,Spatial=70,NoiseLevel=4.8,Baseline=3.2)
Convolution3D(preset="animeHQ")
converttoyuy2()
SmoothHiQ(3,254,12,12,6)
limiter()

Thats all my script contains.

DDogg
21st April 2003, 02:48
Just one thing to check first.
http://forum.doom9.org/showthread.php?s=&threadid=49492

Zerox20
21st April 2003, 02:51
That helped but now all I get is Virtual Dub Error:
Avisynth Script Open Failed.

DDogg
21st April 2003, 03:24
I am certainly no expert, but would suggest starting with the avisource command only with everything else commented out. Add one line at a time until you find the bad boy. One thing I have managed to learn is that stacked filters like this sometime "react" upon each other in ways only the internal code understands. Juggling the order sometimes makes a difference even though it may make no sense to you.

Zerox20
21st April 2003, 04:28
I am very dumb! I had Avisynth 2.5 and Avisynth 2.08 still installed so thats two versions clashing lol I uninstalled both and re-did 2.08 WORKS! hehe