PDA

View Full Version : Facing wierd problem after formatting and setting up avisynth up again .


ankurs
19th May 2008, 19:11
well title says it all , had to format and re installed avisynth , problem is that in meGUI i get a wierd sort of error every time i try to use a filter , i have faced this problem previously as well but then on didee's advice re installed meGUI and avisynth and it got fixed and started working , problem is be it ANY sort of external .avs or .dll doesnt work and gives an error which is as follows abruptly ..

http://i29.tinypic.com/6fp0gn.jpg

also it is a very simple script which i am trying to work , it is as follows ...



LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\AGC.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MaskTools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\warpsharp.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Vinverse.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avs")
Import("C:\Program Files\AviSynth 2.5\plugins\seesaw.avs")
Import("C:\Program Files\AviSynth 2.5\plugins\ylevelsS.avs")
Import("C:\Program Files\AviSynth 2.5\plugins\soothe.avs")
Import("C:\Program Files\AviSynth 2.5\plugins\temporal degrain.avs")
Import("C:\Program Files\AviSynth 2.5\plugins\mrestore.avs")

DGDecode_mpeg2source("C:\Documents and Settings\HP\Desktop\Sample.d2v",cpu=2)

HDRAGC(min_sat=0.0,max_sat=3.0,coef_sat=2.75,min_gain=0.0,max_gain=0.1,coef_gain=0.25)

AssumeTFF().tdeint(mode=1).mrestore(numr=1001,denm=2400)

crop(...)

dull = last.Spline36Resize(...)

YlevelsS(...)

sharp = dull.SeeSaw(...)

temporaldegrain()

soothe(...)




i do remember that once i read somewhere that this problem happens when different versions of removegrain or wrapsharp are present in the plugins folder , well i replaced each and everything in my plugins folder with fresh / same plugins downloaded from wrapsharp's page and also updated the .avs's as well from doom9 , following are the plugins which are present ,

http://i27.tinypic.com/2dkmvrq.jpg

http://i27.tinypic.com/106y8m9.jpg


i am using avisynth 2.5.7 with the MT mod , also my meGUI version is 3.0 and my servers are configured on development update servers as well , what's more astounding is that sort of same scripts worked just fine before the format with almost the same plugins , and also i have already replaced everything from .dll to .avs in my plugins folder and have'nt been able to solve it myself , n00b here help please ! :p

P.S : No use re installing avisynth as well as have already done that 9 times from 2.5 to the present 2.8 as well , all gave same problem :mad: also meGUI has been checked from version 0.2.5 to 0.3.0 and all of them gave the same error on the same script as well :s , also windows is xp sp 3 updaated to the latest window update and 2.0 net framework as well is there ..

Didée
19th May 2008, 19:23
Missing VisualBasic runtime libraries in /system32 ... usually msvcr70/71.dll, msvcp70/71.dll ... clickme (http://home.arcor.de/dhanselmann/_stuff/msvcr7071msvcp7071.rar).

ankurs
19th May 2008, 19:31
^

a couple from the .zip were already present and a couple were not , replaced the previous one's as well and put the whole thing in there , but to no avail :/ still facing the same problem ...

Didée
19th May 2008, 19:56
More things:

- Don't have that multitude of SSEToolS / SSE2Tools / SSE3Tools present in the autoload folder, only one of them
- AvsRecursion belongs to /system32, _NOT_ into AS/plugins (!)
- throw AvsFilter.dll as far away as you only can (what is it good for after all ... only LOTS of problems is what Ive heard of)

If the culprit isn't amongst those (but it probably is), then remove _everything_ and check by re-adding one by one.

ankurs
19th May 2008, 20:27
More things:

- Don't have that multitude of SSEToolS / SSE2Tools / SSE3Tools present in the autoload folder, only one of them

only kept sse3 , then even no use , removed all of them , still the same error

- AvsRecursion belongs to /system32, _NOT_ into AS/plugins (!)
done ! no use

- throw AvsFilter.dll as far away as you only can (what is it good for after all ... only LOTS of problems is what Ive heard of)
again no use :/

If the culprit isn't amongst those (but it probably is), then remove _everything_ and check by re-adding one by one.
already done , problem is ANY external filter doesnt work

lord help me !

Didée
19th May 2008, 20:39
What when not using MEGUI, but opening a script in VirtualDub instead?

(Don't ever had MEGUI installed here, so no clue about its dependencies...)

ankurs
19th May 2008, 22:01
What when not using MEGUI, but opening a script in VirtualDub instead?

(Don't ever had MEGUI installed here, so no clue about its dependencies...)


bingo ! this did the trick as well in combo with avsp , problem was avsfilter.dll , blew that off and retained everything else and filters started working , facing errors on ylevelsS and seesaw ...

http://i25.tinypic.com/xbe8t5.jpg

http://i29.tinypic.com/3150s8x.jpg

edit : i have yv12 installed as well ...

Didée
19th May 2008, 22:09
After all, avsfilter! :devil: ;)

The errors about YV12LutXY are easy to solve. That's from functions that use the older MaskTools V1.5.x. It helps to always import both MaskTools.dll (v1.5.8) and mt_MaskTools.dll (v2.35). Though you're probably doing yourself a favour (faster processing) to use adopted functions where available: LimitedSharpen -> LimitedSharpenFaster, SeeSaw -> SeeSaw_MT2, and so on.

Adub
19th May 2008, 22:10
Install masktools. Both the old and the new versions.

ankurs
20th May 2008, 00:36
After all, avsfilter! :devil: ;)

The errors about YV12LutXY are easy to solve. That's from functions that use the older MaskTools V1.5.x. It helps to always import both MaskTools.dll (v1.5.8) and mt_MaskTools.dll (v2.35). Though you're probably doing yourself a favour (faster processing) to use adopted functions where available: LimitedSharpen -> LimitedSharpenFaster, SeeSaw -> SeeSaw_MT2, and so on.

u da man didee ! its fixed wola ! respect !

Install masktools. Both the old and the new versions.

thanks !