<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://avisynth.nl/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=Transition_Shubin</id>
		<title>Transition Shubin - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=Transition_Shubin"/>
		<link rel="alternate" type="text/html" href="http://avisynth.nl/index.php?title=Transition_Shubin&amp;action=history"/>
		<updated>2026-05-13T20:23:54Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.19.24</generator>

	<entry>
		<id>http://avisynth.nl/index.php?title=Transition_Shubin&amp;diff=11979&amp;oldid=prev</id>
		<title>Reel.Deal: Transition: add documentation (author: Shubin)</title>
		<link rel="alternate" type="text/html" href="http://avisynth.nl/index.php?title=Transition_Shubin&amp;diff=11979&amp;oldid=prev"/>
				<updated>2020-07-05T02:57:07Z</updated>
		
		<summary type="html">&lt;p&gt;Transition: add documentation (author: Shubin)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{FilterCat4|External_filters|Plugins|Transitions|Effects}}&lt;br /&gt;
{{Filter3&lt;br /&gt;
|1=Shubin&lt;br /&gt;
|2=20040130&lt;br /&gt;
|3=[http://avisynth.nl/users/warpenterprises/files/transition_5F25_20040130.zip transition_5F25_20040130.zip]&lt;br /&gt;
|4=Transitions and Effects&lt;br /&gt;
|5=[https://www.gnu.org/licenses/gpl-2.0.txt GPLv2]&lt;br /&gt;
|6=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Description ==&lt;br /&gt;
[[Transition_Shubin|Transition]] plugin for AviSynth.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.5.8 or greater]&lt;br /&gt;
* Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== [[Script variables|Syntax and Parameters]] ==&lt;br /&gt;
:{{Template:FuncDef|Transition (clip, clip, string &amp;quot;Effect&amp;quot;, int &amp;quot;PARAM&amp;quot;, int &amp;quot;CX&amp;quot;, int &amp;quot;CY&amp;quot;)}}&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Parameters&lt;br /&gt;
----------&lt;br /&gt;
&lt;br /&gt;
    clip &amp;quot;clip&amp;quot;&lt;br /&gt;
        The first clip&lt;br /&gt;
        &lt;br /&gt;
    clip &amp;quot;clip2&amp;quot;&lt;br /&gt;
        The second clip&lt;br /&gt;
         &lt;br /&gt;
    string &amp;quot;Effect&amp;quot;&lt;br /&gt;
        Mode: &amp;quot;l&amp;quot; for line and &amp;quot;c&amp;quot; for circle.&lt;br /&gt;
&lt;br /&gt;
    int &amp;quot;PARAM&amp;quot;&lt;br /&gt;
        Radius for circle and slope for line&lt;br /&gt;
    &lt;br /&gt;
    int &amp;quot;CX&amp;quot;&lt;br /&gt;
    int &amp;quot;CY&amp;quot;&lt;br /&gt;
        xCenter and yCenter. Default for both CX and CY is -1 (ClipWidth/2, ClipHeight/2).&lt;br /&gt;
&lt;br /&gt;
This filter produces a combination of two clips. Currently it has&lt;br /&gt;
two modes : circle and line. In the first one, circle, the second&lt;br /&gt;
clip appears in the circle area inside the first clip. This area&lt;br /&gt;
has radius R and center specified by xCenter and yCenter.&lt;br /&gt;
If xCenter or yCenter are omitted, they will be at the middle of&lt;br /&gt;
the screen.&lt;br /&gt;
The next mode, line, is more complicated. It makes a line across&lt;br /&gt;
the screen, passing through the point xCenter,yCenter with slope&lt;br /&gt;
R. Slope 0 means horizontal line (0 degrees), 64 - vertical (90&lt;br /&gt;
degrees) etc. In range 0..127 clip1 will be on top of clip2,&lt;br /&gt;
in range 128..255 vise versa etc. This gives a possibility of&lt;br /&gt;
making a rotating line, like in&lt;br /&gt;
&lt;br /&gt;
animate(clip1,0,150,&amp;quot;transition&amp;quot;,clip2,&amp;quot;l&amp;quot;,0,10,clip2,&amp;quot;l&amp;quot;,855,500)&lt;br /&gt;
&lt;br /&gt;
Plugin should work in all color spaces. clip1 and clip2 should be&lt;br /&gt;
the same size and color space.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Examples ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
clip1 = ColorBars(width=512, height=250).KillAudio()&lt;br /&gt;
clip2 = Blackness(width=512, height=250).killAudio()&lt;br /&gt;
&lt;br /&gt;
Transition(clip1, clip2, Effect=&amp;quot;l&amp;quot;, PARAM=128)&lt;br /&gt;
&lt;br /&gt;
#Animate(clip1,0,150,&amp;quot;transition&amp;quot;,clip2,&amp;quot;l&amp;quot;,64,512,250,clip2,&amp;quot;l&amp;quot;,255,0,0)&lt;br /&gt;
#Animate(clip1,0,150,&amp;quot;transition&amp;quot;,clip2,&amp;quot;l&amp;quot;,0,10,clip2,&amp;quot;l&amp;quot;,855,500)&lt;br /&gt;
#Animate(clip1,0,50,&amp;quot;transition&amp;quot;,clip2,&amp;quot;c&amp;quot;,0,clip2,&amp;quot;c&amp;quot;,512)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Changelog ==&lt;br /&gt;
 Version      Date            Changes&amp;lt;br&amp;gt;&lt;br /&gt;
 20040130     2004/01/30      - latest release&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Archived Downloads ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;; width=&amp;quot;600px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!!width=&amp;quot;100px&amp;quot;| Version&lt;br /&gt;
!!width=&amp;quot;150px&amp;quot;| Download&lt;br /&gt;
!!width=&amp;quot;150px&amp;quot;| Mirror&lt;br /&gt;
|-&lt;br /&gt;
!20040130&lt;br /&gt;
|[http://avisynth.nl/users/warpenterprises/files/transition_5F25_20040130.zip transition_5F25_20040130.zip]&lt;br /&gt;
|[https://web.archive.org/web/20191026082145if_/http://www.avisynth.nl/users/warpenterprises/files/transition_5F25_20040130.zip transition_5F25_20040130.zip]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==External Links ==&lt;br /&gt;
*[https://forum.doom9.org/showthread.php?t=168242 Doom9 Forum] - SimpleTransition script.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
'''Back to [[External_filters#Transitions|External Filters]] &amp;amp;larr;'''&lt;/div&gt;</summary>
		<author><name>Reel.Deal</name></author>	</entry>

	</feed>