logo Sign In

Post #624173

Author
Moth3r
Parent topic
Laserdisc capture workflow.
Link to post in topic
https://originaltrilogy.com/post/id/624173/action/topic#624173
Date created
26-Feb-2013, 7:01 AM

Didn't realise that TooT actually averages the two closest captures. When I did some tests a while ago, I found that while a median function is best at removing dropouts, an average function is better at smooth over dot crawl.

Here is g-force's "pure" median function for three clips :

Function Median1(clip input_1, clip input_2, clip input_3, string "chroma")
{# median of 3 clips from Helpers.avs by G-force

chroma = default(chroma,"process") #default is "process". Alternates: "copy first" or "copy second"

Interleave(input_1,input_2,input_3)
chroma == "process" ? Clense(reduceflicker=false) : Clense(reduceflicker=false,grey=true)
SelectEvery(3,1)

chroma == "copy first" ? last.MergeChroma(input_1) : chroma == "copy second" ? last.MergeChroma(input_2) : last

Return(last)
}