_,,,^..^,,,_ said:
What it MUST be used is a script which takes comparison of different captures, and clean drop outs and other glitches like that. Maybe median could be good, but I used TOOT and the results seemed better to me. Any other good method?
I prefer the following approach:
function MedianOfThree(clip c, clip l, clip r)
{
return Interleave(l, c, r).Clense(reduceflicker=true).SelectEvery(3, 1)
}
However, you have to make sure that the three captures are 100% lined-up spatially and temporally.