MoveChroma
From Avisynth wiki
(Difference between revisions)
m (1 revision) |
(replace script with actual plugin) |
||
Line 1: | Line 1: | ||
− | + | {{FilterCat4|External_filters|Plugins|Restoration_filters|Chroma correction}} | |
+ | {{Filter3 | ||
+ | |[http://sky.geocities.jp/apechironnup/ apechironnup] | ||
+ | |v0.1 | ||
+ | |[http://sky.geocities.jp/apechironnup/MoveChroma.20090823.zip MoveChroma.20090823.zip] | ||
+ | |Chroma Correction | ||
+ | | | ||
+ | |}} | ||
+ | == Description == | ||
+ | Chroma shifting filter; can be used to independently shift the U/V channels left or right. | ||
+ | <br> | ||
+ | <br> | ||
+ | == Requirements == | ||
+ | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] | ||
+ | * Supported color formats: [[YUY2]], [[YV12]] | ||
+ | <br> | ||
+ | == [[Script variables|Syntax and Parameters]] == | ||
+ | :{{Template:FuncDef|MoveChroma (clip, int "Cb", int "Cr")}} | ||
+ | <br> | ||
+ | ::{{Par2| |clip| }} | ||
+ | :::Input clip. | ||
+ | <br> | ||
+ | ::{{Par2|Cb|int|0}} | ||
+ | ::{{Par2|Cr|int|0}} | ||
+ | :::{{Template:FuncDef3|Cb}} represents the U plane (blue), {{Template:FuncDef3|Cr}} represents the V plane (red). Negative values shift to the left, positive values shift to the right. | ||
+ | <br> | ||
+ | == Examples == | ||
+ | Shift the U plane 2 pixels to the left and shift the V plane 2 pixels to the right.<br> | ||
+ | [[AviSource]]("Blah.avi") | ||
+ | MoveChroma(Cr=-2, Cb=2) | ||
+ | <br> | ||
+ | == Changelog == | ||
+ | Version Date Changes<br> | ||
+ | v0.1 2009-08-23 - Initial release | ||
+ | <br> | ||
− | + | == Archived Downloads == | |
− | + | {| class="wikitable" border="1"; width="600px" | |
− | + | |- | |
− | + | !!width="100px"| Version | |
− | + | !!width="150px"| Download | |
− | + | !!width="150px"| Mirror | |
− | + | |- | |
− | + | !v0.1 | |
− | + | |[http://sky.geocities.jp/apechironnup/MoveChroma.20090823.zip MoveChroma.20090823.zip] | |
− | + | |[http://web.archive.org/web/20131128004559/http://sky.geocities.jp/apechironnup/MoveChroma.20090823.zip MoveChroma.20090823.zip] | |
− | + | |} | |
− | + | <br> | |
− | [[ | + | == External Links == |
+ | <br> | ||
+ | <br> | ||
+ | ----------------------------------------------- | ||
+ | '''Back to [[External_filters#Chroma_correction|External Filters]] ←''' |
Revision as of 17:01, 9 December 2015
Abstract | |
---|---|
Author | apechironnup |
Version | v0.1 |
Download | MoveChroma.20090823.zip |
Category | Chroma Correction |
License | |
Discussion |
Contents |
Description
Chroma shifting filter; can be used to independently shift the U/V channels left or right.
Requirements
Syntax and Parameters
- MoveChroma (clip, int "Cb", int "Cr")
- clip =
- Input clip.
- clip =
- int Cb = 0
- int Cr = 0
- Cb represents the U plane (blue), Cr represents the V plane (red). Negative values shift to the left, positive values shift to the right.
- int Cb = 0
Examples
Shift the U plane 2 pixels to the left and shift the V plane 2 pixels to the right.
AviSource("Blah.avi") MoveChroma(Cr=-2, Cb=2)
Changelog
Version Date Changes
v0.1 2009-08-23 - Initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
v0.1 | MoveChroma.20090823.zip | MoveChroma.20090823.zip |
External Links
Back to External Filters ←