Delogo
From Avisynth wiki
(Difference between revisions)
(Delogo v0.05a) |
(add x64 version and other touchups) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat5|External_filters|Plugins|Plugins_x64|Restoration_filters|Logo_Removal}} |
{{Filter3 | {{Filter3 | ||
|1=[https://github.com/makiuchi-d MakKi] | |1=[https://github.com/makiuchi-d MakKi] | ||
|2=v0.05a | |2=v0.05a | ||
− | |3=[https://github.com/makiuchi-d/delogo-avisynth/releases/tag/v0.05a delogo_avisynth_005a.zip] | + | |3=[x86]: [https://github.com/makiuchi-d/delogo-avisynth/releases/tag/v0.05a delogo_avisynth_005a.zip] |
+ | -------- | ||
+ | [x86/x64]: [https://web.archive.org/web/20210919054843if_/https://files.videohelp.com/u/223002/delogo_avsplus.zip delogo_avsplus.zip] | ||
|4=Logo removal | |4=Logo removal | ||
|5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | |5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | ||
Line 10: | Line 12: | ||
== Description == | == Description == | ||
− | Transparent Logo Filter for AviSynth. It includes 2 functions to add or remove semi-transparent logos. | + | Transparent Logo Filter for AviSynth. It includes 2 functions to add or remove semi-transparent logos.<br> |
+ | |||
+ | <span style="color:red">'''Note: [[DelogoHD]] is recommended as a modern replacement for Delogo.'''</span> | ||
<br> | <br> | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
* [x86]: [[AviSynth+]] or [http://sourceforge.net/projects/avisynth2/ AviSynth 2.6] | * [x86]: [[AviSynth+]] or [http://sourceforge.net/projects/avisynth2/ AviSynth 2.6] | ||
+ | * [x64]: [[AviSynth+]] | ||
* Supported color formats: [[YUY2]], [[YV12]] | * Supported color formats: [[YUY2]], [[YV12]] | ||
<br> | <br> |
Latest revision as of 04:50, 19 September 2021
Abstract | |
---|---|
Author | MakKi |
Version | v0.05a |
Download | [x86]: delogo_avisynth_005a.zip
[x86/x64]: delogo_avsplus.zip |
Category | Logo removal |
License | GPLv2 |
Discussion |
Contents |
[edit] Description
Transparent Logo Filter for AviSynth. It includes 2 functions to add or remove semi-transparent logos.
Note: DelogoHD is recommended as a modern replacement for Delogo.
[edit] Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: YUY2, YV12
[edit] Syntax and Parameters
- AddLOGO (clip, string "logofile", string "logoname", int "pos_x", int "pos_y", int "depth", int "yc_y", int "yc_u", int "yc_v", int "start", int "fadein", int "fadeout", int "end", bool "interlaced")
- EraseLOGO (clip, string "logofile", string "logoname", int "pos_x", int "pos_y", int "depth", int "yc_y", int "yc_u", int "yc_v", int "start", int "fadein", int "fadeout", int "end", bool "interlaced")
- clip =
- Input clip; must be YV12 or YUY2.
- clip =
- string logofile =
- Logo file in lgd or ldp format.
- string logofile =
- string logoname = ""
- Logo name to be selected from logo file.
- If omitted, the logo saved at the top of the logo data file will be used.
- string logoname = ""
- int pos_x = 0
- int pox_y = 0
- Logo position adjustment; adjusts in 1/4 pixel increments.
- int pos_x = 0
- int depth = 128
- Adjusts opacity (depth). 128 is 100%.
- int depth = 128
- int yc_y = 0
- int yc_u = 0
- int yc_v = 0
- Color adjustment; adjust the color of the logo.
- int yc_y = 0
- int start = 0
- int end = -1
- Specify the frame number of the start/end frame. When
end < start
, it is executed in all frames afterstart
.
- Specify the frame number of the start/end frame. When
- int start = 0
- int fadein = 0
- int fadeout = 0
- Fade the logo; number of fade frames.
- int fadein = 0
- bool interlaced = false
- Interlace flag, treats YV12 as interlaced. Ignored for YUY2 colorspace.
- bool interlaced = false
[edit] Example
[edit] External Links
- GitHub - Source code repository
Back to External Filters ←