Here is my script, which works flawlessly with an FLCL Source that I am doing as well :
Code: Select all
MPEG2Source("C:\EOE.d2v")
TFM()
TDecimate()
Lanczos4Resize(720,480)
SmoothD(2,4,0,3)
aSharp()
Code: Select all
MPEG2Source("C:\EOE.d2v")
TFM()
TDecimate()
Lanczos4Resize(720,480)
SmoothD(2,4,0,3)
aSharp()
my D2V Cropped it, so I resized it... 0_0Scintilla wrote:First of all, get rid of that LanczosResize line. The video coming off the DVD is already at 720x480, so that line is doing nothing.
Second, it should be fairly obvious that a script that works flawlessly with FLCL is <i>probably not going to work very well</i> with R1 EOE -- FLCL doesn't exhibit any of the problems that EOE does, so naturally you can get away with a much weaker filter chain.
I would recommend DeDot to attack the dot crawl (BEFORE you inverse telecine), followed by something to kill the rainbows (I don't know what style of rainbowing appears in EOE, so play around with some -- note that some of these must go before IVTC while others can be used either way).
After that, hit it with a smoother or two, and then, finally, sharpening and line darkening (because if <a href="http://www.aquilinestudios.org/omgeoe.jpg">the comparison shot I'm looking at</a> doesn't lie, those lines are WAY too soft).
Code: Select all
Telecide(1)
Decimate(5,mode=0)
KernelBob(order=1,sharp=true,threshold=8)
BlendBob(badFrames=0)
I don't have KernelBobKionon wrote:Try this:
See what it does.Code: Select all
Telecide(1) Decimate(5,mode=0) KernelBob(order=1,sharp=true,threshold=8) BlendBob(badFrames=0)
Code: Select all
setMemoryMax(2048)
MPEG2Source("C:\EOE.d2v")
Telecide()
Decimate()
Crop(24,72,-24,-68)
Lanczos4Resize(720,480)
TIsophote()
SSIQ()
aWarpSharp()
then you should probably get it...you'll need to copy this text into notepad and save it as a .avs or .avsi (if you don't want to use import() every time)kickass331 wrote:I don't have KernelBob
Code: Select all
function KernelBob(clip a, int ord)
{
f = a.KernelDeint(order=ord)
e = a.SeparateFields.Trim(1,0).Weave.KernelDeint(order=1-ord)
Interleave(f,e)
}
if you have multiple versions of masktools in your plugins directory, it could cause some problems...except for masktools 2 (which can be in your directory with any version of masktools below 2.0)kickass331 wrote:Anyhow, I've been googling and apparently everything needs masktools, I have it installed but it's not working regardless of which version I use...