Home
RecentChanges

Search:

» AviSynth is a powerful video FrameServer for Win32.

AviSynth Links:
»Download
»Learn to script
»FAQ
»Manual
»Discussion fora
»Project page
»External filters
»FeedBack

» You can add pages to this website immediately. No login required.
Edit this document

» AboutAviSynth

 

Avisynth 
Logo

TomsBob

This function does uses the special '-1' mode of TomsMoComp for jaggy-free upscaling. It also requires SimpleResize?, obviously, as part of the step to remove bobbing.

function TomsBob (clip c)
{
c = c.SeparateFields.TomsMoComp(0,-1,0).SimpleResize?(c.width,c.height+1)
# add this if your clip starts on a half-frame (e.g. a top-field
# in a BottomFirst? clip)
c = c.Trim(1,0)
# invert these for TopFirst? source material
bottom = c.SelectEven?
top = c.SelectOdd?
bottom = bottom.Crop(0,1,0,0)
top = top.Crop(0,0,0,-1)
return interleave(bottom, top)
}

Back to ShareFunctions.

SourceForge Logo

 


Edit this document | View document history
Document last modified Sun, 08 Feb 2004 14:26:08