Log in

View Full Version : adding diffrent filters in places


wiak
9th July 2006, 03:59
how do i add diffrent filters into diffrent places in a avs?
:rolleyes:

IanB
9th July 2006, 07:45
I'm guessing you want to do different filtering to various frame ranges.

For a limited collection of filterings use ApplyRange().AviSource("...")
# Flip first 100 frames
ApplyRange(0, 100, "FlipVertical")

For a more extensive collection use Trim() to cut up the segments then join them back together with "+".AviSource("...")
A=Trim(0, 999).FlipVertical()
B=Trim(1000, 2999)
C=Trim(3000, 4567).FlipHorizontal()
D=Trim(4568, 0)
A + B + C + DAlso search for JDL_Utils, he has some neat scripts and pluggins.

anonymez
9th July 2006, 10:04
or Stickboy's RemapFrames plugin :)