View Full Version : Help fix this strange error!


killerhis
16th July 2003, 15:25
OK.. when I use this script:

LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3v108\mpeg2dec3.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\decomb500b15\Decomb500b15.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\VagueDenoiser-0.221\VagueDenoiser.dll")

Function edit(video)
{
return video.\
Telecide(order=1,guide=1).\
Decimate(cycle=5).\
bilinearresize(640, 480).\
VagueDenoiser(filter=7, threshold=4.0, method=1, nsteps=6,chroma=true)
}

return mpeg2source("c:\vobs\dbz.d2v", idct=7, ipp=true, cpu=6).edit()

I get a very strange error:

http://home.hccnet.nl/h.chourak/error.JPG

I only get this error on my P4 computer. When I use my AMD XP it works perfect, but I need it running on my other computer.

Anyone have a idea how to fix this problem???

sh0dan
16th July 2003, 15:52
What is there (if anything) at line 43 in the file mentioned?

Try commenting out each filter you load - especially VagueDenoise, since it is still fairly new.

AviSynth version?

killerhis
17th July 2003, 15:38
sorry, wrong pic, try thisone:

http://home.hccnet.nl/h.chourak/killer1_1.JPG

and by the way, filter is on the right place and I reaaly dunno what the problem is.

Got avisynth 2.5.2 installed and the samescript works on my AMD... anyone got a idea what's wrong??????

breather
17th July 2003, 16:34
/me = UltraAvisynthNewb :D but:


VagueDenoiser(filter=7, threshold=4.0, method=1, nsteps=6,chroma=true)

Why there isn't a space in front of "chroma=true" ? Could this be the source of the error ?

Cu breather

Kurosu
17th July 2003, 16:36
Again, some P4-restrictions of the Intel compiler stroke.

For the record, the first error message is due to LoadPluginEx.dll which shouldn't appear of course, as it isn't loaded in the previous script...

Wilbert
17th July 2003, 16:42
Could this be the source of the error ?
No, doesn't matter.

Provided it works with other smoothers (instead of VagueDenoiser.dll), Kurosu should be right.

killerhis
20th July 2003, 11:54
In my script it can load everything. decomb, mipsmooth, deen, dup, mftoon, warpsharp, masktool. BUT somehow it can't load veagadenoiser, while the path is correct!
this is so strange.... what can I do to get it loaded??

Kurosu
20th July 2003, 13:54
This is not strange. Other users (me in the first place) had problems with some versions of VagueDenoiser. Check its thread for updates, although your XP-based system should have been the one unable to load the plugin. Or maybe it's another problem lying with Windows XP, in which case the DLL is fine and your system is busted.

killerhis
21st July 2003, 11:11
well it got to be that, cuase it looks I'm the only one with the problem loading the plugin... which sucks, cause it's a powerfull denoiser :mad:

JuanC
22nd July 2003, 06:52
I had a similar problem. But I got another message when opening VirtualDub/VDMod:

"This application has failed to start because MSVCR70.DLL was not found. Reinstalling the application may fix this problem"

After a couple of those messages, I got another one, similar to yours:

"AviSynth open failure:
Script error: There is no function named "VagueDenoiser"
(x:\yyyy\zzz.AVS, line nn)"

Interestingly, after copying MSVCR70.DLL to \windows\system32 the messages are gone, and VagueDenoiser (v0.243) is loaded, but it doesn't recognize the "filter" option. Hope that helps, :J