Hi,
I just cant figure this out,I use acp and the optimal script.I get this error message when it start prediction
lane difference ,only planar (as yv12) supported
(serialclip,line 1)
and the screen colours look red on the left side.its like the screen is divided ,different colour on each side.
here is my script:
## Main section and static filters ###
#
Mpeg2Source("D:\DVD2AVI.d2v")
#
undot()
asharp(1, 4)
GripCrop(352, 288, source_anamorphic=true)
GripSize(resizer="BicubicResize")
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()
Textsub("C:\Documents and Settings\Allan\Desktop\KVCD\NAVN.srt")
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
#
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#
####
Please help