Need More help with overscan ... I know how to do a overscan resize, What I still cant do is a overscan overlap,
When I do A overlap, It doesnt show a little black borders around the edges like it does in resize ? What am I supposed to do>?
When i use letterbox (16,16,16,16) nothin happens
No borders no nothin Can afew of u help me please
Heres my script ...
## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\VSfilter.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter25.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("E:\delete\1.d2v")
#
VobSub("D:\DVD_VIDEO\VIDEO_TS\VTS_10_0")
undot()
Limiter()
asharp(1, 4)
GripCrop(704, 480, overscan=0, source_anamorphic=false)
GripSize(resizer="BilinearResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#
## 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) ")
#
#
#
GripBorders()
#LetterBox(16,16,16,16) # Depends on situation. Use MovieStacker!
Limiter()
#
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#
####
Am I supposed ta use resize & overlap together ? or
Am i supposed to use overscan 2 along with
LetterBox(16,16,16,16) ????????