StaticNoiseC
From Avisynth wiki
(Difference between revisions)
m (→Requirements) |
(minor formatting and add archived downloads) |
||
Line 1: | Line 1: | ||
{{FilterCat|External_filters|Adjustment_filters|Effects}} | {{FilterCat|External_filters|Adjustment_filters|Effects}} | ||
− | {{ | + | {{Filter3 |
|histamine | |histamine | ||
|20110108b | |20110108b | ||
|[http://www.nmm-hd.org/upload/get~YnWFecZw0Uo/StaticNoiseC20110108b.zip StaticNoiseC20110108b.zip] | |[http://www.nmm-hd.org/upload/get~YnWFecZw0Uo/StaticNoiseC20110108b.zip StaticNoiseC20110108b.zip] | ||
|Effects | |Effects | ||
− | + | |[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | |
− | + | |6=[http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20 NMM-HD Forum] [Chinese]}} | |
− | |[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]}} | + | |
<br> | <br> | ||
== Description == | == Description == | ||
− | + | Generates static noise by using the [http://en.wikipedia.org/wiki/Mersenne_twister Mersenne Twister] random number generator. | |
+ | <br> | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | + | * AviSynth 2.5.8 or [http://forum.doom9.org/showthread.php?t=168764 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: [[YV12]] | |
<br> | <br> | ||
− | == Syntax and Parameters == | + | == [[Script variables|Syntax and Parameters]] == |
:{{Template:FuncDef|StaticNoiseC (''clip'', ''int'' "var", ''int'' "seed", ''bool'' "Y", ''bool'' "UV" )}} | :{{Template:FuncDef|StaticNoiseC (''clip'', ''int'' "var", ''int'' "seed", ''bool'' "Y", ''bool'' "UV" )}} | ||
+ | <br> | ||
+ | ::{{Par2| |clip| }} | ||
+ | :::Input clip. | ||
<br> | <br> | ||
::{{Par2|var|int|2}} | ::{{Par2|var|int|2}} | ||
:::Controls the amount of static noise. | :::Controls the amount of static noise. | ||
− | + | :::Range: 2 - 100 | |
<br> | <br> | ||
::{{Par2|seed|int|-1}} | ::{{Par2|seed|int|-1}} | ||
− | :::Specifies a repeatable grain sequence. Value must be | + | :::Specifies a repeatable grain sequence. Value must be greater than or equal to -1. |
<br> | <br> | ||
::{{Par2|Y|bool|true}} | ::{{Par2|Y|bool|true}} | ||
− | :::Dictates if the Y plane gets processed or not. | + | :::Dictates if the luma(Y) plane gets processed or not. |
<br> | <br> | ||
::{{Par2|UV|bool|false}} | ::{{Par2|UV|bool|false}} | ||
− | :::Dictates if the UV planes gets processed or not. | + | :::Dictates if the chroma(UV) planes gets processed or not. |
<br> | <br> | ||
== Examples == | == Examples == | ||
Line 43: | Line 46: | ||
[http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20#p772 20110108b] 2011/01/08 - Optimize<br> | [http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20#p772 20110108b] 2011/01/08 - Optimize<br> | ||
[http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20#p769 20110108] 2011/01/08 - Initial release | [http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20#p769 20110108] 2011/01/08 - Initial release | ||
+ | <br> | ||
+ | == Archived Downloads == | ||
+ | {| class="wikitable" border="1"; width="600px" | ||
+ | |- | ||
+ | !!width="100px"| Version | ||
+ | !!width="150px"| Download | ||
+ | !!width="150px"| Mirror | ||
+ | |- | ||
+ | !20110108b | ||
+ | |[http://www.nmm-hd.org/upload/get~YnWFecZw0Uo/StaticNoiseC20110108b.zip StaticNoiseC20110108b.zip] | ||
+ | |[http://web.archive.org/web/20131228160225/http://www.nmm-hd.org/upload/get~YnWFecZw0Uo/StaticNoiseC20110108b.zip StaticNoiseC20110108b.zip] | ||
+ | |} | ||
+ | <br> | ||
− | == Links == | + | ==External Links == |
− | *[http:// | + | *[http://www.nmm-hd.org/newbbs/viewtopic.php?f=8&t=118&start=20 NNM-HD Forum] - StaticNoiseC discussion. [Chinese] |
− | + | ||
<br> | <br> | ||
<br> | <br> |
Revision as of 01:51, 16 September 2014
Abstract | |
---|---|
Author | histamine |
Version | 20110108b |
Download | StaticNoiseC20110108b.zip |
Category | Effects |
License | GPLv2 |
Discussion | NMM-HD Forum [Chinese] |
Contents |
Description
Generates static noise by using the Mersenne Twister random number generator.
Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
Syntax and Parameters
- StaticNoiseC (clip, int "var", int "seed", bool "Y", bool "UV" )
- clip =
- Input clip.
- clip =
- int var = 2
- Controls the amount of static noise.
- Range: 2 - 100
- int var = 2
- int seed = -1
- Specifies a repeatable grain sequence. Value must be greater than or equal to -1.
- int seed = -1
- bool Y = true
- Dictates if the luma(Y) plane gets processed or not.
- bool Y = true
- bool UV = false
- Dictates if the chroma(UV) planes gets processed or not.
- bool UV = false
Examples
StaticNoiseC with default settings:
AviSource("Blah.avi") StaticNoiseC(var=2, seed=-1, Y=true, UV=false)
Changelog
Version Date Changes
20110108b 2011/01/08 - Optimize
20110108 2011/01/08 - Initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
20110108b | StaticNoiseC20110108b.zip | StaticNoiseC20110108b.zip |
External Links
- NNM-HD Forum - StaticNoiseC discussion. [Chinese]
Back to External Filters ←