Transition Shubin

From Avisynth wiki
Revision as of 03:57, 5 July 2020 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Abstract
Author Shubin
Version 20040130
Download transition_5F25_20040130.zip
Category Transitions and Effects
License GPLv2
Discussion


Contents

Description

Transition plugin for AviSynth.

Requirements


Syntax and Parameters

Transition (clip, clip, string "Effect", int "PARAM", int "CX", int "CY")
Parameters
----------

    clip "clip"
        The first clip
        
    clip "clip2"
        The second clip
         
    string "Effect"
        Mode: "l" for line and "c" for circle.

    int "PARAM"
        Radius for circle and slope for line
    
    int "CX"
    int "CY"
        xCenter and yCenter. Default for both CX and CY is -1 (ClipWidth/2, ClipHeight/2).

This filter produces a combination of two clips. Currently it has
two modes : circle and line. In the first one, circle, the second
clip appears in the circle area inside the first clip. This area
has radius R and center specified by xCenter and yCenter.
If xCenter or yCenter are omitted, they will be at the middle of
the screen.
The next mode, line, is more complicated. It makes a line across
the screen, passing through the point xCenter,yCenter with slope
R. Slope 0 means horizontal line (0 degrees), 64 - vertical (90
degrees) etc. In range 0..127 clip1 will be on top of clip2,
in range 128..255 vise versa etc. This gives a possibility of
making a rotating line, like in

animate(clip1,0,150,"transition",clip2,"l",0,10,clip2,"l",855,500)

Plugin should work in all color spaces. clip1 and clip2 should be
the same size and color space.


Examples

clip1 = ColorBars(width=512, height=250).KillAudio()
clip2 = Blackness(width=512, height=250).killAudio()

Transition(clip1, clip2, Effect="l", PARAM=128)

#Animate(clip1,0,150,"transition",clip2,"l",64,512,250,clip2,"l",255,0,0)
#Animate(clip1,0,150,"transition",clip2,"l",0,10,clip2,"l",855,500)
#Animate(clip1,0,50,"transition",clip2,"c",0,clip2,"c",512)


Changelog

Version      Date            Changes
20040130 2004/01/30 - latest release


Archived Downloads

Version Download Mirror
20040130 transition_5F25_20040130.zip transition_5F25_20040130.zip


External Links




Back to External Filters

Personal tools