Log in

View Full Version : Convolution3d error in Divx5enc


X-Nemesis
27th January 2003, 02:06
Here's the error I get when trying to grab the RC averaging period in divx5enc using Convolution3DYV12.dll ,Avisynth 2.5 and virtualdubmod renamed virtualdub

AviSynth open error: Script error: there is no function names "Convolution3d" "G:\Movie Rips\FOTR Disc2\FOTR cd2.avs, line 15)

Here is my avs script:

LoadPlugin("g:\PROGRA~1\GORDIA~1\mpeg2dec3.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\decomb.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\IVTC.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\Avisynth_Spatial.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\GreedyHMA.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\TomsMoComp.dll")
#LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
#LoadPlugin("g:\PROGRA~1\GORDIA~1\SimpleResize.dll")
# SOURCE
mpeg2source("G:\Movie Rips\FOTR Disc2\FOTR cd2.d2v")
# CROPPING
crop(0,58,718,360)
# 3d Convolution
Convolution3d (preset="movieHQ")
# RESIZING
LanczosResize(704,288)

I read in another thread that it's good to put c3d before Lanczos.

What am I doing wrong here?

jonny
27th January 2003, 02:52
This:

#LoadPlugin("g:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")

must be:

LoadPlugin("g:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")

And of course be sure you have Convolution3DYV12.dll in the GKnot dir.

lines starting with # are comments (so this lines are ignored by avisynth)

Cheers
jonny

X-Nemesis
27th January 2003, 03:59
I made those changes and here's my script:

LoadPlugin("g:\PROGRA~1\GORDIA~1\mpeg2dec3.dll")
LoadPlugin("g:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")
mpeg2source("G:\Movie Rips\FOTR Disc2\FOTR cd2.d2v")
crop(0,58,718,360)
Convolution3D (preset="movieHQ")
LanczosResize(704,288)

Yet now when I run it in divx5enc I get this message:

'Convolution3DYV12.dll is not an avisynth 2.5 plugin', but I know I downloaded the correct version from Vlad's website and placed it in the GordionKnot AND avisynth\plugin folder.

Any ideas?

Thanks

llemor
27th January 2003, 04:56
Try using the actual parameters, not an alias, like this:

Convolution3D (0, 3, 4, 3, 4, 2.8, 0)

I experienced that also but when I changed the parameters as shown above, it worked fine.

Cheers,

X-Nemesis
27th January 2003, 05:15
I tried that change and I still get the same error:

AviSynth open error: Plugin g:\PROGRA~1\AviSynth2\plugins\Convolution3DYV12.dll is not an Avisynth 2.5 plugin

SIGH

:confused:

Boardlord
27th January 2003, 06:42
I had the same problem after upgrading to the 2003-01-21 Avisyth 2.5 alpha. Just download Convolution3DYV12 beta4 in this thread
http://forum.doom9.org/showthread.php?s=&threadid=38281&pagenumber=3

It fixed this problem for me!