GNoise: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m format
Line 47: Line 47:
<br>
<br>
== Archived Downloads ==
== Archived Downloads ==
{| class="wikitable" border="1"; width="200px"
{| class="wikitable" border="1"; width="400px"
|-
|-
!!width="200px"| Version
!!width="100px"| Version
!!width="200px"| Download
!!width="150px"| Download
!!width="150px"| Mirror
|-
|-
|r5
|r5
|[http://web.archive.org/web/20070717174052/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip gnoise_r5.zip]
|[http://web.archive.org/web/20070717174052/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip gnoise_r5.zip]
|[http://web.archive.org/web/20140505170700/http://soulhunters-crappy-website.com/data/gnoise_r5.zip gnoise_r5.zip]
|-
|-
|r4
|r4
|[http://web.archive.org/web/20140505170602/http://soulhunters-crappy-website.com/data/gnoise_r4.zip gnoise_r4.zip]
|[http://web.archive.org/web/20131231231142/http://www.64k.it/andres/data/avisynth/gnoise_r4.zip gnoise_r4.zip]
|[http://web.archive.org/web/20131231231142/http://www.64k.it/andres/data/avisynth/gnoise_r4.zip gnoise_r4.zip]
|}
|}
<br>
<br>
== Links ==
== Links ==
*[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Forum] - GNoise discussion.
*[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Forum] - GNoise discussion.

Revision as of 19:09, 5 May 2014

Abstract
Author mf
Version r5
Download gnoise_r5.zip
Category Effects
License closed source
Discussion {{{6}}}


Description

Another noise generator for AviSynth.


Requirements

- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12


gnoise (clip, float "sigma", int "seed", bool "color", bool "temporal", bool "info")


float  sigma = 10.0
Controls the amount of noise. Set at 0.0 and noise will be disabled. As usual higher values increase noise.


int  seed = 96
Specifies a repeatable grain sequence. Each value will produce a unique pattern.


bool  color = false
If true, noise will be added to the chroma (U/V) also.


bool  temporal = false
False produces static noise, true gives dynamic noise.


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.


Examples

gnoise with default settings:

AviSource("Blah.avi")
gnoise(sigma=10, seed=96, color=false, temporal=false, info=false)


Changelog

Version      Date            Changes
r5 2006-08-11 - Add undocumented "info" parameter
r4 2006-06-18 - Initial public release


Archived Downloads

Version Download Mirror
r5 gnoise_r5.zip gnoise_r5.zip
r4 gnoise_r4.zip gnoise_r4.zip






Back to External Filters