TxPlus
(TxPlus: add documentation) |
(add Archived Downloads) |
||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat5|External_filters|Plugins|Plugins_x64|Effects|Deep_color_tools}} |
{{Filter3 | {{Filter3 | ||
− | |1= | + | |1=[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] |
− | |2= | + | |2=24 June 2020 |
− | |3= | + | |3=[http://www.avisynth.nl/users/vcmohan/TxPlus/TxPlus.7z TxPlus.7z] |
− | |4= | + | |4=External filters |
− | |5= | + | |5=[https://www.gnu.org/licenses/gpl-2.0.txt GPLv2] |
− | |6= | + | |6=[https://forum.doom9.org/showthread.php?t=174399 Doom9 Forum]}} |
<br> | <br> | ||
== Description == | == Description == | ||
Line 20: | Line 20: | ||
* [x86]: [[AviSynth+]] | * [x86]: [[AviSynth+]] | ||
* [x64]: [[AviSynth+]] | * [x64]: [[AviSynth+]] | ||
− | * Supported color formats: All planar YUV and RGB, 8-16bits | + | * Supported color formats: All [[planar]] Y, YUV, and RGB, 8-16bits |
<br> | <br> | ||
Line 92: | Line 92: | ||
[Transition](A,B,t) | [Transition](A,B,t) | ||
+ | <br> | ||
+ | == Archived Downloads == | ||
+ | {| class="wikitable" border="1"; width="400px" | ||
+ | |- | ||
+ | !!width="100px"| Version | ||
+ | !!width="150px"| Download | ||
+ | !!width="150px"| Mirror | ||
+ | |- | ||
+ | !24 June 2020 | ||
+ | |[http://www.avisynth.nl/users/vcmohan/TxPlus/TxPlus.7z TxPlus.7z]<br>[https://web.archive.org/web/20200924161628if_/http://www.avisynth.nl/users/vcmohan/TxPlus/TxPlus.7z TxPlus.7z] | ||
+ | |[http://www.avisynth.nl/users/vcmohan/TxPlus/TxPlus_src.7z TxPlus_src.7z]<br>[https://web.archive.org/web/20200924160046if_/http://www.avisynth.nl/users/vcmohan/TxPlus/TxPlus_src.7z TxPlus_src.7z] | ||
+ | |} | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters|External Filters]] ←''' | '''Back to [[External_filters|External Filters]] ←''' |
Latest revision as of 20:45, 24 October 2020
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 24 June 2020 |
Download | TxPlus.7z |
Category | External filters |
License | GPLv2 |
Discussion | Doom9 Forum |
Contents |
[edit] Description
The functions in this plugin are very similar to those of TransAll. Mostly recoded for handling more bit depths and formats for AviSynth+. All functions are thread safe MT_NICE_FILTER.
The TxPlus plug-in creates transition from one clip to another clip having equal frame width, height, pitch, color format. and similar Audio formats. The scene will gradually form from the firs Clip to the second Clip during the specified overlap duration. Audio of the first clip fades out while of the second fades in duringition. (24 bit audio is not accepted). Brief description of all the functions within this plugin is given in the Synopsis. Around 150 distinctions can be created with these functions. In the detailed descriptions typical images seen duringition are depicted.
Place the TxPlus.dll
in the appropriate AviSynth+ autoloading plugin folder . A LoadPlugin call will be needed if the plugin is put in any other folder. As there are many functions in this plugin , it may be preferable to keep this plugin in a different folder and invoke LoadPlugin. All parameters excepting input clips and overlap time, have default values.
- See official documentation: http://www.avisynth.nl/users/vcmohan/TxPlus/index.html
[edit] Requirements
[edit] Syntax and Parameters
Accord (clip, clip, float, string "dir", bool "twin", bool "open") Bloom (clip, clip, float, bool "emerge") Bubbles (clip, clip, float, bool "static") Central (clip, clip, float, bool "emerge, bool "resize, int "nturns") Crumple (clip, clip, float, string "type, bool "fold") Disco (clip, clip, float, int "radius, int "nturns, bool "emerge") FlipPage (clip, clip, float, string "dir") FlipTurn (clip, clip, float, int "vflip, int "hflip, int "nturns") Funnel (clip, clip, float, string "dir") Marbles (clip, clip, float, int "radius", int" mag", bool "drop") Paint (clip, clip, float, string "type") Push (clip, clip, float, string "dir") Ripple (clip, clip, float, int "lambda", int "amp", string "origin") Ripples (clip, clip, float, int "lambda", int "amp", string "origin") Roll (clip, clip, float, int "dir", bool "rollin") Scratch (clip, clip, float, string "style") Shuffle (clip, clip, float, string "dir") Slide (clip, clip, float, int "dir", bool "slidein") Sprite (clip, clip, float, string "dir") Swing (clip, clip, float, bool "out", int ndoors", int "corner", bool "dir") Swirl (clip, clip, float, string "dir", int "step") TwinDoors (clip, clip, float, bool "vert" bool "open") VenetianBlinds (clip, clip, float, int "width" string "type", bool "open") Weave (clip, clip, float, string "type", bool "open") Wipe (clip, clip, float, int "dir")
[edit] List of Available Transitions
- Accord
- Bloom
- Bubbles
- Central
- Crumple
- Disco
- FlipPage
- FlipTurn
- Funnel
- Marbles
- Paint
- Push
- Ripple
- Ripples
- Roll
- Scratch
- Shuffle
- Slide
- Sprite
- Swing
- Swirl
- TwinDoors
- VenetianBlinds
- Weave
- Wipe
[edit] Examples
A sample script may look like this:
#LoadPlugIn("C:\............\All.dll") A=avisource("C:\...........\xxxxx.avi") B=avisource("C:\...........\yyyyy.avi") #any desired call in place of Sprite below [Transition](A,B,t)
[edit] Archived Downloads
Version | Download | Mirror |
---|---|---|
24 June 2020 | TxPlus.7z TxPlus.7z |
TxPlus_src.7z TxPlus_src.7z |
Back to External Filters ←