DelogoHD
From Avisynth wiki
Abstract | |
---|---|
Author | msg7086 |
Version | r9 |
Download | DelogoHD_r9.zip |
Category | Logo removal |
License | GPLv2 |
Discussion | Doom9 Forum |
Contents |
Description
DelogoHD is an overhaul of the original delogo filter, which was originally written by MakKi many years ago.
Legacy parameters are removed due to analog TV signal being deprecated years ago.
This filter provides both AviSynth+ and VapourSynth interfaces.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: Y8, YV12, YV16, YV24
- AviSynth+: all planar Y and YUV formats (8/10/12/14/16-bit) are supported.
Syntax and Parameters
- DelogoHD (clip, string "logofile", string "logoname", int "left", int "top", int "start", int "end", int "fadein", int "fadeout", bool "mono", int "cutoff")
- AddlogoHD (clip, string "logofile", string "logoname", int "left", int "top", int "start", int "end", int "fadein", int "fadeout", bool "mono", int "cutoff")
- clip =
- A clip to process. It must have constant format and it must be YUV 8..16 bit with integer samples.
- clip =
- string logofile =
- Logo file in lgd format.
- string logofile =
- string logoname =
- Logo name to be selected from logo file.
- Default:
NULL
, selecting the first one.
- string logoname =
- int left = 0
- int top = 0
- Number of pixels in adjusting logo position.
- For example,
left = -5
results logo being 5 pixels left to its original position.
- int left = 0
- int start = 0
- int end = Max
- First and last frame that has the logo.
- int start = 0
- int fadein = 0
- int fadeout = 0
- Number of fading frames.
- int fadein = 0
- bool mono = false
- Force mono logo, wiping chroma part of the logo.
- bool mono = false
- int cutoff = 0
- Wiping near-transparent part of the logo, if its depth is lower than cutoff. Should be less than 1000 (Max logo depth).
- int cutoff = 0
Example
External Links
- GitHub - Source code repository
Back to External Filters ←