I encoded my first kvcd last night using tok , was trying to do it with CqMatic but it just opened blank tmpgenc windows and would encode it at default settings.
This is the script i used and Tok encoded the video in 639 mb.
## DLL Section ##
#
#
####
## Main section and static filters ###
#
Mpeg2Source("D:\Encoded\Namak Halal\nh.d2v")
#
undot()
Limiter()
asharp(1, 4)
DctFilter(1, 1, 1, 1, 1, 1, 0.5, 0)
FluxSmooth(7, 7)
Tweak(hue=0, sat=1.0, bright=0, cont=1.0)
GripCrop(352, 240, overscan=2, source_anamorphic=false)
GripSize(resizer="BilinearResize")
GripBorders()
MergeChroma(blur(1.5
)
MergeLuma(blur(0.2))
BlockBuster(method="noise", detail_min=1, detail_max=10, variance=1.0, seed=0)
#
#
## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual )
# This will apply variable temporalsoften
# and variable blur.
# Both filters are active at all times, and work inversely proportional to the
# activity, measured from current frame to next frame.
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")
#
#
#
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
Limiter()
#
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#
#
####