GNoise
From Avisynth wiki
(Difference between revisions)
m (→Links) |
m (→Syntax and Parameters) |
||
Line 18: | Line 18: | ||
<br> | <br> | ||
== Syntax and Parameters == | == Syntax and Parameters == | ||
− | :{{Template:FuncDef| | + | :{{Template:FuncDef|gnoise (clip, float "sigma", int "seed", bool "color", bool "temporal", bool "info")}} |
<br> | <br> | ||
::{{Par|sigma|float|10.0}} | ::{{Par|sigma|float|10.0}} | ||
Line 31: | Line 31: | ||
::{{Par|temporal|bool|false}} | ::{{Par|temporal|bool|false}} | ||
:::False produces static noise, true gives dynamic noise. | :::False produces static noise, true gives dynamic noise. | ||
+ | <br> | ||
+ | ::{{Par|info|bool|false}} | ||
+ | :::If set to true, it will display a graph. This parameter is undocumented so the true purpose of the graph is unknown. | ||
+ | :::Do not use! It is very slow. | ||
<br> | <br> | ||
Revision as of 00:56, 1 January 2014
Abstract | |
---|---|
Author | soulhunter |
Version | r5 |
Download | gnoise_r5.zip |
Category | Effects |
Requirements |
|
License | closed source |
Discussion |
Contents |
Description
- A Noise Generator for Avisynth.
Requirements:
- - AviSynth 2.5.8 or later
- - Supported color formats: YV12
- - Progressive input only
Syntax and Parameters
- gnoise (clip, float "sigma", int "seed", bool "color", bool "temporal", bool "info")
- sigma float = 10.0
- Controls the amount of noise. Set at 0.0 and noise will be disabled. As usual higher values increase noise.
- sigma float = 10.0
- seed int = 96
- Specifies a repeatable grain sequence. Each value will produce a unique pattern.
- seed int = 96
- color bool = false
- If true, noise will be added to the chroma (U/V) also.
- color bool = false
- temporal bool = false
- False produces static noise, true gives dynamic noise.
- temporal bool = false
- info bool = false
- If set to true, it will display a graph. This parameter is undocumented so the true purpose of the graph is unknown.
- Do not use! It is very slow.
- info bool = false
Examples
AviSource("Blah.avi") GNoise(sigma=2, seed=96, color=false, temporal=false)
Changelog
R5 2006-08-11: - Undocumented update
R4 2006-06-18: - Initial public release
Links
- Doom9 Forum - GNoise discussion.
- Archive.org - GNoise readme by mf
Back to External Filters ←