StaticNoiseC
From Avisynth wiki
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
- - Supported color formats: YV12
- - Progressive input only
Syntax and Parameters
- StaticNoiseC ( clip, int "var", int "seed", bool "Y", bool "UV" )
- var int = 2
- Controls the amount of static noise.
- Range: 2 - 100
- Controls the amount of static noise.
- var int = 2
- seed int = -1
- Specifies a repeatable grain sequence. Value must be greather than or equal to -1.
- seed int = -1
- Y bool = true
- Dictates if the Y plane gets processed or not.
- Y bool = true
- UV bool = false
- Dictates if the UV planes gets processed or not.
- UV bool = false
Examples
AviSource("Blah.avi") StaticNoiseC(var=2, seed=-1, Y=true, UV=false)
Changelog
Changes 2011-01-08: - Optimize
Changes 2011-01-08: - Initial release
Links
- NNM-HD Forum - StaticNoiseC discussion. [Foreign language]
Back to External Filters ←