Log in

View Full Version : vdubmod/gknot won't process avs


Genshii
19th November 2005, 02:03
Recently, whenever i try to encode an avs file, it opens and everything in vdubmod, but when the encoding process is completed, there is just a plain black avi file with no... video. Also i noticed that while encoding in vdub, the projected file size stayed at 729K!!! A few weeks ago everything was working just fine though.

The script itself isn't the problem because i can play it just fine in Media Player Classic.

Now the only way i can encode is to load the m2v or vob file directly into vdub. The downside to this is that i can only use the vdub filters and not the avisynth filters, which is what i needed.
______

Also, the MSmooth filter only works for me as...
MSmooth(strength=3, debug=true)

however if i use, as gknot says...
MSmooth(15,3,true,false,false,false)
it says that there is a syntax error. please help!

foxyshadis
19th November 2005, 02:24
You know the drill, post your script please. ;)

MSmooth parameter_list:

threshold (0-255, default 15)

strength (0-25, default 3)

highq (true/false, default true)

chroma (true/false, default false)

mask (true/false, default false)

show (true/false, default false)

debug (true/false, default false)

Just use named arguments, it's better for your sanity.

Genshii
19th November 2005, 02:58
the script that does not work...

______

# Created with Gordian Knot
#
# http://gknot.doom9.org

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")

# SOURCE
mpeg2source("G:\Anime\Neon Genesis Evangelion (26)\Platinum 1\test.d2v", idct=7)

# TRIM
#trim(startframe,endframe)

# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)

# DEINTERLACING (1)
FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)

# DEINTERLACING (2)
#KernelDeInt(order=1,sharp=true)
# or maybe
#DGBob(order=1,mode=1)

# DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()

# CROPPING
crop(4,0,714,480)

# DENOISING: choose one combination (or none)

# RESIZING
LanczosResize(640,480)

# DENOISING: choose one combination (or none)
MSmooth(strength=5, debug=true)

# BORDERS
#AddBorders(left,top,right,bottom)

# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)

# FOOL CCEnc
#ResampleAudio(44100)