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

InterlacedSmoothing

This applies any filter to an interlaced source. The filter can be used for both spatial filters, like blur() and temporal filters like temporalsoften.

function ApplyInterlacedFilter(clip v1, string filter) {

v2 = separatefields(v1)
selecteven(v2)
even = Eval(filter)
selectodd(v2)
odd = Eval(filter)
interleave(even,odd)
return weave()
}

Example of usage

AviSource("file.avi")

ApplyInterlacedFilter(last, "blur(1.5)")

Back to ShareFunctions.

SourceForge Logo

 


Edit this document | View document history
Document last modified Wed, 29 Jan 2003 16:43:48