Log in

View Full Version : Question about KernelDeint


wolfsoft
10th January 2005, 03:01
When I use it as this:

Telecide(hints=true,order=1,post=1,ovr="E:\POPGO\Keroro_DVD\yatta.avs.tel.txt")
KernelDeint(order=1,sharp=false,twoway=true,threshold=3,map=true)

I found that it can't available. If I del the words "ovr="E:\POPGO\Keroro_DVD\yatta.avs.tel.txt",it could work well.
But I wish to use Overriding Decomb Decisions.
How can I do for this?

Wait help please:confused:

Guest
10th January 2005, 03:17
Originally posted by wolfsoft
I found that it can't available. Can you please explain the problem better than this? I can't make heads or tails of this statement. Thank you. What is the exact difference between the good and bad cases?

wolfsoft
10th January 2005, 03:33
I have made a dvdrip. Main of the avs as this:


LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\KernelDeint.dll")

mpeg2source("Keroro_01.d2v")

Telecide(hints=true,order=1,post=1,ovr="E:\POPGO\Keroro_DVD\yatta.avs.tel.txt")
KernelDeint(order=1,sharp=false,twoway=true,threshold=3,map=true)

If I write as this:


Telecide(hints=true,order=1,post=1)
KernelDeint(order=1,sharp=false,twoway=true,threshold=3,map=true)

It would display the white shadow where would be interlace.And it would be blended when "map=false".

But if i write as this:

Telecide(hints=true,order=1,post=1,ovr="E:\POPGO\Keroro_DVD\yatta.avs.tel.txt")
KernelDeint(order=1,sharp=false,twoway=true,threshold=3,map=true)
It would not display the white shadow,and the interlace couldn't be blended.

I hope to use the manual ivtc,and also hope to use KernelDeint to blend the interlace.Can you tell me how I should to do?
:thanks:

wolfsoft
10th January 2005, 03:46
I changed the avs as this:


LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\KernelDeint.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\warpsharp.dll")
LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\SimpleResize.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")

mpeg2source("Keroro_01.d2v")

Telecide(order=1,post=0,ovr="E:\POPGO\Keroro_DVD\yatta.avs.tel.txt")
Telecide(hints=true,order=1,post=1)
KernelDeint(order=1,sharp=false,twoway=true,threshold=3,map=true,debug=true)


Now it worked. But I couldn't believe if it is a correct form.

Myrsloik
10th January 2005, 03:54
I assume you want kerneldeint to stop using the hints from telecide.

Using telecide twice is generally a really bad idea so you should try setting hints=false for telecide or delete all lines in the override file you pass to it that contain + or - (forced postprocessing on/off).

wolfsoft
10th January 2005, 04:09
Great!The trouble is sloved! Thank you very much!:cool: