Scanlines
From Avisynth wiki
(Difference between revisions)
(Scanlines) |
m (/* External Links add link) |
||
(4 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}} |
{{Filter3 | {{Filter3 | ||
|turulo | |turulo | ||
Line 5: | Line 5: | ||
|[http://avisynth.nl/users/warpenterprises/files/scanlines_5F25_dll_20031103.zip scanlines_dll_20031103.zip] | |[http://avisynth.nl/users/warpenterprises/files/scanlines_5F25_dll_20031103.zip scanlines_dll_20031103.zip] | ||
|Effects | |Effects | ||
− | |[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]}} | + | |[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] |
− | + | |}} | |
+ | |||
== Description == | == Description == | ||
− | + | Add [http://en.wikipedia.org/wiki/Scan_line scanlines] (black horizontal bars) to a video. <br/> | |
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | + | * AviSynth 2.5.8 or later | |
− | + | * [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only | |
− | + | * Supported color formats: [[RGB24]], [[RGB32]], [[YV12]] | |
<br> | <br> | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
− | :{{Template: | + | :{{Template:FuncDef|Scanlines (clip, int "STRENGTH")}} |
<br> | <br> | ||
− | ::{{ | + | ::{{Par2| |clip| }} |
+ | :::Input clip. | ||
+ | <br> | ||
+ | ::{{Par2|STRENGTH|int|0}} | ||
:::Sets the strength of the odd rows from 0% to 100% of a regular row. Valid values are between 0 and 100. | :::Sets the strength of the odd rows from 0% to 100% of a regular row. Valid values are between 0 and 100. | ||
:::0 is full strength; 100 leaves the video untouched. | :::0 is full strength; 100 leaves the video untouched. | ||
Line 32: | Line 36: | ||
<br> | <br> | ||
==External Links == | ==External Links == | ||
− | *[ | + | *[https://forum.doom9.org/showthread.php?t=156658 Doom9 Forum] - Alternative scan lines script. |
− | + | *[https://forum.doom9.org/showthread.php?p=1719572#post1719572 Doom9 Forum] - Another alternative scan lines script. | |
+ | *[https://forum.doom9.org/showthread.php?t=170970 Doom9 Forum] - Dot Matrix effect. | ||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Effects|External Filters]] ←''' | '''Back to [[External_filters#Effects|External Filters]] ←''' |
Latest revision as of 08:07, 15 August 2021
Abstract | |
---|---|
Author | turulo |
Version | v0.1 |
Download | scanlines_dll_20031103.zip |
Category | Effects |
License | GPLv2 |
Discussion |
Contents |
[edit] Description
Add scanlines (black horizontal bars) to a video.
[edit] Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: RGB24, RGB32, YV12
[edit] Syntax and Parameters
- Scanlines (clip, int "STRENGTH")
- clip =
- Input clip.
- clip =
- int STRENGTH = 0
- Sets the strength of the odd rows from 0% to 100% of a regular row. Valid values are between 0 and 100.
- 0 is full strength; 100 leaves the video untouched.
- int STRENGTH = 0
[edit] Examples
Scanlines with default settings:
AviSource("Blah.avi") Scanlines(STRENGTH=0)
[edit] Changelog
Version Date Changes
v0.1 2003/11/03 - Initial release
[edit] External Links
- Doom9 Forum - Alternative scan lines script.
- Doom9 Forum - Another alternative scan lines script.
- Doom9 Forum - Dot Matrix effect.
Back to External Filters ←