PDA

View Full Version : LoadPluginEX2.dll


shon3i
4th March 2006, 00:24
Where i can download this file or LoadPluginEX.dll and how to use dustv5.dll with this.

Didée
4th March 2006, 00:47
LoadPluginEx is included in the "WarpSharp package", which you can get from Avisynth.org/warpenterprises.

Usage could look like

# First load plugins for Avisynth >= v2.5
LoadPlugin("path\to\DGDecode.dll")
LoadPlugin("path\to\RemoveGrain.dll")
# ... etc.

# Then load LoadPluginEx and the ancient stuff.
# (NO AUTOLOADING for these ! Do NOT put them in
# the \Avisynth\plugins folder, & always load them manually!
LoadPlugin("path\to\LoadPluginEx.dll")
LoadPlugin("path\to\dustv5.dll")

# open source
Mpeg2Source("path\to\yoursource.d2v")

# a recent filter
RemoveGrain(1)

# Plugins for Avisynth v2.0 support only YUY2 colorspace, so:
ConvertToYUY2()
PixieDust(2)

# Back to YV12, & out to the encoder
ConvertToYV12()

return(last)

In case you get some "strange" error message, make sure you have the msvcr70/msvcr71/msvcp70/msvcp71 DLLs in your system folder,

shon3i
4th March 2006, 00:50
Thanks a lot

Deep_Eyes
14th March 2006, 02:11
I've tried using this method and all i get is

"dustv5.dll is not a avisynth 2.5 filter"

its like its completely ignoreing the loadpluginex.dll


any thoughts?

foxyshadis
14th March 2006, 02:14
LoadPluginEx("path\to\dustv5.dll")

It's actually a completely different function, it doesn't override the old one.