jorel
Here is my script. I am also going to try to run it through DVD2AVI again.
#
LoadPlugin("d:\Filters25\MPEG2Dec3.dll")
LoadPlugin("d:\Filters25\GripFit_YV12.dll")
LoadPlugin("d:\Filters25\asharp.dll")
LoadPlugin("d:\Filters25\unfilter.dll")
LoadPlugin("d:\Filters25\undot.dll")
#
####
## Defined Variables and Constants ##
#
MaxTreshold = 1.50
nf = 0 # Current frame.
#
####
## Main section and static filters ###
#
Mpeg2Source("D:\THE_RECRUIT\VIDEO_TS\The Recruit.d2v")
#
undot()
Limiter()
asharp(2, 4)
GripCrop(352, 240, overscan=2)
GripSize(resizer="BilinearResize")
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.2))
#
#
## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual ) - This will apply temporalsoften to
# very static scenes, and apply variable blur on moving scenes.
# We also assign a variable - and this is why a line break is inserted:
ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf >= 2 ? \
unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ) : \
TemporalSoften(4, round(1/nf) , round(3/nf) ,0, 2) ")
#
#
#
GripBorders()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
Limiter()
#
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#
####
|