StaticNoiseC
From Avisynth wiki
(Difference between revisions)
m (Format) |
m (→Requirements) |
||
Line 14: | Line 14: | ||
== Requirements == | == Requirements == | ||
:- AviSynth 2.5.8 or later | :- 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 | :- [[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 == | == 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" )}} |
Revision as of 14:01, 23 February 2014
Abstract | |
---|---|
Author | histamine |
Version | 20110108b |
Download | StaticNoiseC20110108b.zip |
Category | Effects |
Requirements |
|
License | GPLv2 |
Discussion |
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" )
- int var = 2
- Controls the amount of static noise.
- Range: 2 - 100
- Controls the amount of static noise.
- int var = 2
- int seed = -1
- Specifies a repeatable grain sequence. Value must be greather than or equal to -1.
- int seed = -1
- bool Y = true
- Dictates if the Y plane gets processed or not.
- bool Y = true
- bool UV = false
- Dictates if the 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
Links
- NNM-HD Forum - StaticNoiseC discussion. [Foreign language]
- Archive.org - Archived download.
Back to External Filters ←