Spinner
From Avisynth wiki
(Difference between revisions)
(Created page with " {{FilterCat4|External_filters|Plugins|<!-- category -->TODO|<!-- category -->TODO}} {{Filter3 |1=<!-- author -->[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] |2=<!-- ver...") |
|||
Line 3: | Line 3: | ||
{{Filter3 | {{Filter3 | ||
− | |1=<!-- author -->[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] | + | |1=<!-- author --> [http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] |
− | |2=<!-- version --> | + | |2=<!-- version --> 9 Apr 2018 |
− | |3=<!-- | + | |3=<!-- URL --> [http://www.avisynth.nl/users/vcmohan/movePlus/movePlus.7z movePlus.7z] |
− | |4=<!-- category -->External filters | + | |4=<!-- category --> External filters |
− | |5=<!-- license -->[ | + | |5=<!-- license --> [https://www.gnu.org/licenses/gpl-2.0.txt GPLv2] |
− | |6=<!-- discussion URL -->[ | + | |6=<!-- discussion URL --> [https://forum.doom9.org/showthread.php?t=140019&highlight=Spinner Spinner plugin]}} |
<br> | <br> |
Revision as of 21:20, 18 June 2018
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 9 Apr 2018 |
Download | movePlus.7z |
Category | External filters |
License | GPLv2 |
Discussion | Spinner plugin |
Contents |
Description
Image is rotated by given angle and a full description is at click me.
Requirements
- AviSynth 2.5.8 or 2.6.0 Alpha 5 or greater
- Supported color formats: RGB32, RGB24, YUY2, YV12, *YV16, *YV24, *YV411, *Y8
- * Not available in AviSynth 2.5.8.
"c[r]i[angle]f[x]f[y]f[color]i[q]i[bg]b[er]i[eangle]f[ex]f[ey]f[lx]i[rx]i[ty]i[by]i[elx]i[erx]i[ety]i[eby]i[p]i[check]b[tclip]c"
Syntax and Parameters
- Spinner(clip, int "r",float "angle", float "x", float "y ",float"color",int "q",bool "bg",clip "tclip")
- clip =
- Input clip.
- clip =
- r int = half of diagnal of frame
- radius of circle for rotation.
- r int = half of diagnal of frame
- angle float = 90
- angle of rotation .
- angle float = 90
- x float = frame width / 2
- x coord of axis of rotation
- x float = frame width / 2
- y float = frame height/2
- y coordinate of axis of rotation
- y float = frame height/2
- color int = 0
- color to be used to fill voids.
- color int = 0
- q int = 5
- Type of interpolation to be used. 0 to 5 .
- q int = 5
- bg bool = true
- Whether un rotated input clip to be used as background(true) or color (false) .
- bg bool = true
- tclip clip = none
- If a separate clip is specified it will be used as bg as in a transition.
- tclip clip = none
Examples
## This is some example code to use spinner in a transition. imagereader("C:\..........jpg", end = 10) a = avisource("C;\..........avi").converttoYV16() converttoyv16() Spinner( angle = -30, eangle = 130, q=5, tclip = a)
Back to External Filters ←