RemoveGrain v0.9/Repair/Repair
From Avisynth wiki
Back to Repair ←
Contents |
[edit] Description
Repairs unwanted artifacts created by plugins included in the RemoveGrain v0.9 package.
[edit] Requirements
- Progressive input only
- Supported color formats: YUY2, YV12
[edit] Syntax and Parameters
- Repair (clip, clip, int "mode", int "modeU", int "modeV", bool "planar")
- clip =
- Input clip to be repaired; usually the processed clip.
- clip =
- clip =
- Input clip; usually the original unprocessed clip.
- clip =
- int mode = 2
- int modeU = mode
- int modeV = modeU
- Independently control the processing mode for each plane.
- int mode = 2
- -1 : Bypass - input plane is trashed thus faster than mode 1
- 0 : Copy - input plane is left intact
- 1 :
- 2 : Default
- 3 :
- 4 :
- 5 :
- 6 :
- 7 :
- 8 :
- 9 :
- 10 :
- 11 :
- 12 :
- 13 :
- 14 :
- 15 :
- 16 :
- 17 :
- 18 :
- By default if modeU is not set it defaults to the value of mode. If modeV is not set it defaults to the value of modeU
- bool planar = false
- See SSETools Interleaved2Planar.
- bool planar = false
[edit] Examples
Repair with default values:
Unprocessed = AviSource("Blah.avi") Processed = RemoveGrain(Unprocessed, mode=2, modeU=2, modeV=2, planar=false)
Repair(Processed, Unprocessed, mode=2, modeU=2, modeV=2, planar=false)
[edit] External Links
Back to Repair ←