Log in

View Full Version : Filters at different parts of AVI???


Stace
25th April 2005, 19:37
Guys,

Hope you can help?

Is it possible within VDub to use filters on specific parts of an AVI???

For example use a filter for the first half and then remove it for the second half?

If so, how?

Thanks
Stace

Axed
26th April 2005, 12:49
If you havent already solved this problem, here is the solution. Use AVISynth, it looks a bit difficult, but once you get the hang of it, its very simple.

avisource("wedding.avi")

a=trim(0,1499) # cuts the first 1500 frames out
b=trim(1500,3000) # cuts the next 1500 frames out

a=deen(a,1,10,12,"a3d") # filters part a using deen
b=temporalsoften(b) # filters part b using temporalsoften

a+b # pastes the two parts together

Guest
26th April 2005, 13:41
A VirtualDub solution is here:

http://wwwtcs.inf.tu-dresden.de/~dc1/conditional/

Stace
26th April 2005, 13:43
Many Thanks