Quote:
Works only on a real dual core P4. If you have one, then yes it should.
|
It works on HT-capable P4's as well, though the speed increase is not that huge.
You could try wrapping LRemoveDust and LimitedSharpenFaster inside MT like this:
Code:
dgdecode_mpeg2source("E:\Lavoro KVCD\lost.d2v", cpu=4, idct=7)
TFM()
BicubicResize(720,576,1./3.,1./3.,2,0,716,572)
MT("f()")
MergeLuma(blur(0.1))
MergeChroma(blur(1.58))
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) ")
Letterbox(16,16,16,16)
ConvertToRGB24()
function f(clip c){
c
LRemoveDust_YV12(17,1)
LimitedSharpenFaster()
}
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
Never ever do deinterlacing or field matching after resizing! See where TFM is placed. Actually you should remove the whole resizing line because it's useless. You are using LetterBox to blank 16 pixels off each side anyway so no need for cropping and then resizing back to 720x576.