GNoise

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Syntax and Parameters)
m (Links)
Line 45: Line 45:
 
== 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.
 +
*[http://web.archive.org/web/20071031023422/http://mf.creations.nl/avs/filters/gnoise.txt Archive.org] - GNoise readme by mf
 
<br>
 
<br>
 
<br>
 
<br>

Revision as of 15:24, 30 December 2013

Abstract
Author soulhunter
Version r5
Download gnoise_r5.zip
Category Effects
Requirements
  • YV12
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")


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


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


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


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


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





Back to External Filters

Personal tools