Sagekilla
20th January 2008, 17:43
As the title says, my source is an animated movie (Dark Fury) that's been interlaced. (Yuck..) I've tried Mcbob() and mvbob() and didn't like the results. TDeint() actually ended up being much better quality and speed wise it seems.. But, I'm still trying to eke out the best possible quality before throwing it off to x264. Here's my chain so far:
MPEG2Source("source.d2v")
Tdeint()
Crop(6,66,-6,-70)
Spline36Resize(720,384)
o = last
b1vec = o.MVanalyse(pel=2,overlap=2,idx=1,delta=1,isb=true)
3f1vec = o.MVanalyse(pel=2,overlap=2,idx=1,delta=1,isb=false)
Return(o.MVDegrain1(b1vec,f1vec,thSAD=350,idx=2))
Update: Changed it around a bit.. AAA() was causing issues and didn't really fix the aliasing that much. I added the MVDegrain call because it helped smooth some areas where there was noise, and it helped even things out.
Here's a short clip (http://www.mediafire.com/?73mzozbez1m) if anyone needs it.
MPEG2Source("source.d2v")
Tdeint()
Crop(6,66,-6,-70)
Spline36Resize(720,384)
o = last
b1vec = o.MVanalyse(pel=2,overlap=2,idx=1,delta=1,isb=true)
3f1vec = o.MVanalyse(pel=2,overlap=2,idx=1,delta=1,isb=false)
Return(o.MVDegrain1(b1vec,f1vec,thSAD=350,idx=2))
Update: Changed it around a bit.. AAA() was causing issues and didn't really fix the aliasing that much. I added the MVDegrain call because it helped smooth some areas where there was noise, and it helped even things out.
Here's a short clip (http://www.mediafire.com/?73mzozbez1m) if anyone needs it.