GNoise

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Changelog)
m (Description)
Line 1: Line 1:
 
{{FilterCat|External_filters|Adjustment_filters|Effects}}
 
{{FilterCat|External_filters|Adjustment_filters|Effects}}
 
{{Filter
 
{{Filter
|{{Author/soulhunter}}
+
|{{Author/mf}}
 
|r5
 
|r5
 
|[http://web.archive.org/web/20080905123941/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip gnoise_r5.zip]
 
|[http://web.archive.org/web/20080905123941/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip gnoise_r5.zip]
Line 10: Line 10:
 
<br>
 
<br>
 
== Description ==
 
== Description ==
:A Noise Generator for Avisynth.
+
:Another noise generator for AviSynth.
 
<br>
 
<br>
 
== Requirements: ==
 
== Requirements: ==
Line 43: Line 43:
  
 
== Changelog ==
 
== Changelog ==
   R5 [http://web.archive.org/web/20070717174052/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip 2006-08-11:]
+
   r5 [http://web.archive.org/web/20070717174052/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip 2006-08-11:]
 
       - Add undocumented "info" parameter<br>
 
       - Add undocumented "info" parameter<br>
   R4 [http://www.64k.it/andres/data/avisynth/gnoise_r4.zip 2006-06-18:]
+
   r4 [http://web.archive.org/web/20131231231142/http://www.64k.it/andres/data/avisynth/gnoise_r4.zip 2006-06-18:]
 
       - Initial public release
 
       - Initial public release
  

Revision as of 01:17, 1 January 2014

Abstract
Author mf
Version r5
Download gnoise_r5.zip
Category Effects
Requirements
  • YV12
License closed source
Discussion


Contents

Description

Another 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.


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.


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.


Examples

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


Changelog

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

Links





Back to External Filters

Personal tools