GNoise
From Avisynth wiki
(Difference between revisions)
m (→Syntax and Parameters) |
m |
||
Line 1: | Line 1: | ||
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}} | {{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}} | ||
− | |||
{{Filter3 | {{Filter3 | ||
|{{Author/mf}} | |{{Author/mf}} | ||
Line 8: | Line 7: | ||
|closed source | |closed source | ||
|6=[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Thread]}} | |6=[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Thread]}} | ||
− | |||
== Description == | == Description == | ||
Another noise generator for AviSynth.<br/> | Another noise generator for AviSynth.<br/> |
Latest revision as of 07:02, 22 February 2015
Abstract | |
---|---|
Author | mf |
Version | r5 |
Download | gnoise_r5.zip |
Category | Effects |
License | closed source |
Discussion | Doom9 Thread |
Contents |
[edit] Description
Another noise generator for AviSynth.
[edit] Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
[edit] Syntax and Parameters
- gnoise (clip, float "sigma", int "seed", bool "color", bool "temporal", bool "info")
- clip =
- Input clip.
- clip =
- float sigma = 10.0
- Controls the amount of noise. Set at 0.0 and noise will be disabled. As usual higher values increase noise.
- float sigma = 10.0
- int seed = 96
- Specifies a repeatable grain sequence. Each value will produce a unique pattern.
- int seed = 96
- bool color = false
- If true, noise will be added to the chroma (U/V) also.
- bool color = false
- bool temporal = false
- False produces static noise, true gives dynamic noise.
- bool temporal = false
- bool info = 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.
- bool info = false
[edit] Examples
gnoise with default settings:
AviSource("Blah.avi") gnoise(sigma=10, seed=96, color=false, temporal=false, info=false)
[edit] Changelog
Version Date Changes
r5 2006-08-11 - Add undocumented "info" parameter
r4 2006-06-18 - Initial public release
[edit] Archived Downloads
Version | Download | Mirror |
---|---|---|
r5 | gnoise_r5.zip | gnoise_r5.zip |
r4 | gnoise_r4.zip | gnoise_r4.zip |
[edit] External Links
- Doom9 Forum - GNoise discussion.
- Archive.org - GNoise readme by mf
Back to External Filters ←