View Full Version : adding diffrent filters in places
how do i add diffrent filters into diffrent places in a avs?
:rolleyes:
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 :)
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.