I did check forced film and it says ntsc - interlaced.23.976fps
- the lines only show when there is motion.
leakkernelDeint is in the avisynth plugin folder
Mpeg2Source("M:\1.d2v").textsub("M:\ 01.srt")
leakKernelDeint(order=0,sharp=true,threshold=7)
undot()
asharp(1, 4)
GripCrop(352,240,overscan=1,source_anamorphic=fals e)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#
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) ")
#
#
#
ColorMatrix(mode="rec.709->rec.601")
GripBorders()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
#
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
|