Log in

View Full Version : Problems with loading of plugins


The eDealer
10th January 2005, 07:32
I have a terrible interlaced indian PAL-DVD source with fieldblending (3,5h length!!).
To back it up I want to use the CCE (2.67) with this AVS-Script:


# Hindi-Script 09.01.2005
#
setmemorymax(1024)
#
import("E:\x\restore24.avs")
#
loadplugin("E:\x\MaskTools.dll")
loadPlugin("E:\x\DGDecode.dll")
loadplugin("E:\x\kerneldeint.dll")
loadplugin("E:\x\tdeint.dll")
loadplugin("E:\x\avisynth_c.dll")
loadcplugin("E:\x\smartdecimate.dll")
#
MPEG2Source("E:\DVDlabTemp\vts_nic.d2v",cpu=6,idct=5,iPP=true)
#
crop(8,72,-16,-76)
a=r24kernelbob()
b=tdeint(mode=1,tryweave=false)
restore24(a,b,24,50).assumefps(25,true)
HorizontalReduceBy2
#ConvertToYUY2(interlaced=true)
AudioDub(BlankClip())


scharfis_brain supported me with the script, but finaly i have the problem to load the plugins MaskTools.dll and/or kerneldeint.dll.
I get the AVS message that they could not been loaded (internal preview of AVSEdit: "Evaluate: unrecognized exception" or media player classic: "LoadPlugin: unable to load:"E:\.......".).
In a nother thread of me you see that i also had problems with this plugins in my plugins-folder of AviSynth. So i load it manualy using the script.
I use the latest AviSynth version 2.55 (01.09.2004).

Have anybody an idea for this problem or another script solution?
Thanks for feedback

Manao
10th January 2005, 13:26
Let me guess, you've got a PIV with hyperthreading enabled ?

Fetch the latest masktools version ( http://manao4.free.fr/ ) you shouldn't get this error anymore.

The eDealer
10th January 2005, 16:30
Thanks for that, now the masktools are loaded (you'r right->P4 HT).
Now I am happy :)

The eDealer
10th January 2005, 19:38
Hi manao,
the new version of masktools.dll could be loaded on a P4 system, but it seams not to work with restore24?!
I get an errormessage (please see the picture).
Any idea?

Wilbert
10th January 2005, 19:52
As you can seen your screenshot is not readable.

The eDealer
10th January 2005, 20:57
OK, that's the problem with timeshifted attachments :rolleyes:
Were are your glases ;) .

another try

Didée
11th January 2005, 08:51
Ah yes, yv12layer() was removed from MaskTools at some time.

As a quick fix, replace two lines in Restore24.avs:

old:

global edge_p2_dark_n = YV12layer(edge_p2, edge_p1.invert(),"mul",chroma=false)
global edge_p1_dark_p = YV12layer(edge_p1, edge_p2.invert(),"mul",chroma=false)

new:

global edge_p2_dark_n = overlay(edge_p2, edge_p1.invert(),mode="multiply")
global edge_p1_dark_p = overlay(edge_p1, edge_p2.invert(),mode="multiply")

Restore24 is waiting patiently for a refreshment, but this is not the time. It needs much free time and taking a deeeeeeeeeeeeeeep breath before diving into such muddy water ;)

The eDealer
11th January 2005, 20:43
Hi Didée,
thanks for fast reply and your effort.
Badly, but know there comes up an error message "Error 0x80004005" when starting withe the CCE:(.

I have to use the workaround with vdub as an avi to code it with the CCE to MPEG2.

Many thanks.