Hi... I'[m trying to back up 2 epsiodes from a dvd using 704*480 90 min PAL template. The dvd is interlaced PAL and I am in PAL country. Problem is my cq keeps dropping below 60 no matter what I try or what tempalte I use. Can someone tell me what I've done wrong?
Mpeg2Source("F:\video_ts\5-6.d2v")
leakKernelDeint(order=0,sharp=true,threshold=7)
ColorMatrix(mode="rec.709->rec.601")
undot()
Limiter()
asharp(1, 4)
GripCrop(704,576,overscan=1,source_anamorphic=fals e)#
Gripsize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
SwitchThreshold = (Width<=352) ? 4 : (Width<=480) ? 3 : 2
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) ")
Blockbuster(method="noise",detail_min=1,detail_max =10,variance=0.3,seed=5823)
Limiter()
function fmin( int f1, int f2) { return ( f1<f2 ) ? f1 : f2}
GripBorders()
ConverttoRGB24()
thanks
|