vie2233hil
17th May 2005, 22:24
Here's the script:
LoadPlugin("DGDecode.dll")
LoadPlugin("KernelDeInt.dll")
LoadPlugin("repal.dll")
LoadPlugin("undot.dll")
function kernelbob()
{
f=a.kerneldeint(order=1, sharp=true, twoway=true, threshold=th)
e=a.separatefields.trim(1,0).weave.kerneldeint(order=0, sharp=true, twoway=true, threshold=th)
interleave(f,e)
}
mpeg2source("s.d2v",cpu=6,idct=5)
kernelbob(4)
It gives me error "KernelDeint: you must specify the order parameter"
When I try kerneldeint outside of function it works fine
Plz help
LoadPlugin("DGDecode.dll")
LoadPlugin("KernelDeInt.dll")
LoadPlugin("repal.dll")
LoadPlugin("undot.dll")
function kernelbob()
{
f=a.kerneldeint(order=1, sharp=true, twoway=true, threshold=th)
e=a.separatefields.trim(1,0).weave.kerneldeint(order=0, sharp=true, twoway=true, threshold=th)
interleave(f,e)
}
mpeg2source("s.d2v",cpu=6,idct=5)
kernelbob(4)
It gives me error "KernelDeint: you must specify the order parameter"
When I try kerneldeint outside of function it works fine
Plz help