GNoise: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m minor formatting
Line 1: Line 1:
{{FilterCat|External_filters|Adjustment_filters|Effects}}
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}}
 
{{Filter3
{{Filter3
|{{Author/mf}}
|{{Author/mf}}
Line 5: Line 6:
|[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]
|Effects
|Effects
|closed source}}
|closed source
|6=[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Thread]}}
<br>
<br>
== Description ==
== Description ==
:Another noise generator for AviSynth.
Another noise generator for AviSynth.<br/>
<br>
<br>
== Requirements ==
== Requirements ==
:- AviSynth 2.5.8 or later
* AviSynth 2.5.8 or later
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
:- Supported color formats: [[YV12]]
* Supported color formats: [[YV12]]
<br>
<br>
== [[Script variables|Syntax and Parameters]] ==
== [[Script variables|Syntax and Parameters]] ==
Line 63: Line 65:
<br>
<br>


== Links ==
==External 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
*[http://web.archive.org/web/20071031023422/http://mf.creations.nl/avs/filters/gnoise.txt Archive.org] - GNoise readme by mf
<br>
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[External_filters#Effects|External Filters]] &larr;'''
'''Back to [[External_filters#Effects|External Filters]] &larr;'''

Revision as of 23:07, 20 September 2014


Abstract
Author mf
Version r5
Download gnoise_r5.zip
Category Effects
License closed source
Discussion Doom9 Thread


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