View Full Version : How i can use filter in megui ?
BosDvD
12th April 2010, 14:59
Hi,
How i can use filter for megui ? Where :\
I don't know something.. :confused:
brother_tuck
12th April 2010, 20:01
Have a look at http://mewiki.project357.com
nibus
15th April 2010, 02:52
First you need to add the *.avs, *.avsi and *.dll files into your AVI Synth plugins directory. It's easiest to rename the *.avs scripts to *.avsi because then they automatically load and you don't have to load them in the script.
Once you have all the dependent files in the plugins directory, open your AVI Synth script creator in MeGUI (ctrl + R). Load your video input (.d2v file) and setup your resolution and cropping. Once you have that setup, you can go to the Script tab and manually enter in functions.
To enter in functions you need to know the syntax of the particular function. However many will work without any particular syntax.
For example, DeHalo_Alpha will work without any extra parameters:
DeHalo_Alpha()
So your script with DeHalo_Alpha added might look like this:
LoadPlugin("C:\Program Files\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\sourcefile.d2v", info=3)
LoadPlugin("C:\Program Files\MeGUI\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
DeHalo_Alpha()
crop( 0, 8, 0, -8)
Spline36Resize(640,480) # Spline36 (Neutral)
#denoise
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.