View Single Post
Old 9th November 2006, 07:12   #3  |  Link
Livesms
Registered User
 
Livesms's Avatar
 
Join Date: Mar 2006
Posts: 184
Quote:
Originally Posted by IanB View Post
Avisynth provides FadeIn, FadeOut, FadeIO and Disolve native filters.

Many other effects can be created using Animate with layer or overlay.
Code:
...
Global GlobClip=Last
...
Animate(1000, 1100, "DoIt", 0, 100)
...
# Slide GlobClip in from bottom right corner
Function DoIt(Clip clip, Int I) {
  clip
  Fx=Round(Width() * (100-I)/100.0)
  Fy=Round(Height() * (100-I)/100.0)
  Layer(GlobClip, "Add", X=Fx, Y=Fy)
  Return Last
}
Thank you, but it is not really what I want

I want filter for such transition
Livesms is offline   Reply With Quote