TransAll: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m Requirements: AviSynth 2.6
Raffriff42 (talk | contribs)
link fix; remove empty bullet list items
Line 14: Line 14:
== Description ==
== Description ==
<!-- a one-sentence description -->
<!-- a one-sentence description -->
During editing of a video, at scene changes or at splice a smooth transition of about 28 types can be used and a full description is at  [http://www.avisynth.nl/users/vcmohan/TransAll/TransAll.html click me].
During editing of a video, at scene changes or at splice a smooth transition of about 28 types can be used. A full description is available [http://www.avisynth.nl/users/vcmohan/TransAll/docs/index.html here].
<br>
<br>
<br>
<br>
Line 21: Line 21:
* <!-- source video: progressive  
* <!-- source video: progressive  
* <!-- color formats -->Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]], <span style="color:red">*</span>[[YV16]], <span style="color:red">*</span>[[YV24]], <span style="color:red">*</span>[[YV411]], <span style="color:red">*</span>[[Y8]]
* <!-- color formats -->Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]], <span style="color:red">*</span>[[YV16]], <span style="color:red">*</span>[[YV24]], <span style="color:red">*</span>[[YV411]], <span style="color:red">*</span>[[Y8]]
: <span style="color:red">*</span> Not available in AviSynth 2.5.8.
:<span style="color:red">*</span> color format not available in AviSynth 2.5.8.
* <!-- CPU/GPU -->
 
* <!-- binaries -->
* <!-- dependent plugins -->
<br>
<br>
"cc[overlap]i[[Transition_specific_parameters]*"
"cc[overlap]i[[transition specific parameters]*"


== [[Script variables|Syntax and Parameters]] ==
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef|<!-- function name -->Trans**** (''clip''; ''<!-- par 1 type -->clip'' "<!-- par 1 name -->", ''<!-- par 2 type -->int'' "<!-- par 2 name -->overlap", ''<!-- par 3 type -->*'' "<!-- par 3 name -->Transition_specific_parameters")}}
:{{Template:FuncDef|Trans**** (''clip'' "clip1", ''clip'' "clip2", ''int'' "overlap", ''transition specific parameters'')}}
<br>
 
::{{Par2| |clip| }}
::{{Par1|clip|clip1}}
:::Input clip1.       
:::First input clip1.       
<br>
 
::{{Par2| |clip| }}
::{{Par1|clip|clip2}}
:::Input clip2.       
:::Second input clip2.       
<br>
 
::{{Par2| |int| }}
::{{Par1|int|overlap}}
:::overlapping number of frames.       
:::Number of overlapping frames.       
<br>
::{{Par2|<!-- par 3 type -->*|<!-- par 3 name -->Transition_specific|<!-- par 3 default value -->?}}
:::<!-- par 3 description -->see particular effect description .


<br>
::{{Par1|transition specific parameter(s):| }}
::{{Par2|<!-- par n type -->*|<!-- par n name -->refer_Transition|<!-- par 4 default value -->?}}
:::see particular effect description
:::<!-- par 4 description -->.
<br>


<br>
<br>


== Examples ==
== Examples ==

Revision as of 00:53, 11 October 2015


Abstract
Author V.C.Mohan
Version 1.0.0.0.0
Download 2.5.8 versionTransAll 2.6.0 alpha5 version URL -->TransAll
Category External filters
License GPLv2
Discussion Announced TransAll plugin


Description

During editing of a video, at scene changes or at splice a smooth transition of about 28 types can be used. A full description is available here.

Requirements

* color format not available in AviSynth 2.5.8.


"cc[overlap]i[[transition specific parameters]*"

Trans**** (clip "clip1", clip "clip2", int "overlap", transition specific parameters)
clip clip1
First input clip1.
clip clip2
Second input clip2.
int overlap
Number of overlapping frames.
transition specific parameter(s):
see particular effect description


Examples

## This is some example code to remove noise from an image.
imagereader("C:\avi_plugins\varianslim\theoin.jpg", end = 10)
converttoyv16()
Trans.....(clip,clip2,100,.....)




Back to External Filters