WarpSharp/UVTimingH
From Avisynth wiki
(Difference between revisions)
(WarpSharp/UVTimingH) |
Latest revision as of 01:57, 16 December 2015
UVTimingH is a horizontal chroma shifting filter similar to AviUtl's yctiming plugin.
[edit] Syntax and Parameters
- UVTimingH (clip, float "u", float "v", bool "edge")
- clip =
- Input clip.
- clip =
- float u = 0.0
- float v = 0.0
- Shifting value; positive values shift to the right, negative values shift to the left.
- float u = 0.0
- bool edge = false
- Set to true to duplicate edge pixels.
- bool edge = false
[edit] Examples
Shift the U channel left and shift the V channel right and duplicate edge pixels:
AviSource("Blah.avi") UVTimingH(u=-1, v=1, edge=true)
Back to WarpSharp ←