Log in

View Full Version : how to use.....loadpluginex.dll


s8n
18th August 2004, 13:13
does any1 know how to use loadpluginex.dll ?.........like the commands to add into an AVS ?.......i need to use 2.0 filters in AviSynth 2.5......this is my AVS

s8n


LoadPlugin("C:\plugins\DecombLegacy.dll")
LoadPlugin("C:\plugins\MPEG2DEC2.dll")
LoadPlugin("C:\plugins\warpsharp.dll")
LoadPlugin("C:\plugins\dup.dll")
LoadPlugin("C:\plugins\antiblink2.dll")
LoadPlugin("C:\plugins\Convolution3D.dll")
mpeg2source("C:\a\a.d2v")
Telecide(chroma=false)

#For removing rainbows
Antiblink(15,3,false,16)

#Crop
Crop(0,0,0,0)

#Smoothers
SmartSmoothHiQ(2, 128, 12, 12, 6, false)

#Temperal Smoothers
Convolution3d(1, 10, 22, 8, 8, 3, 0)

#Resize
BilinearResize(640,480)

#Sharpen
WarpSharp(depth=92, blur=3, bump=92, cubic=-0.6)

#Copy frames that are the same
dup(threshold=0.1,copy=true)

Wilbert
18th August 2004, 13:37
Did you read YV12 FAQ, Q14? Btw, v2.5 plugins should be loaded first, then loadpluginex.dll, then v2.0 plugins.