GNoise: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
U
 
mNo edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Adjustment_filters|Effects}}
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}}
{{Filter
{{Filter3
|{{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]
|Effects
|Effects
|
|closed source
* YV12
|6=[http://forum.doom9.org/showthread.php?p=841700#post841700 Doom9 Thread]}}
|closed source}}
== Description ==
Another noise generator for AviSynth.<br/>
<br>
<br>
== Description ==
== Requirements ==
:A Noise Generator for Avisynth.
* 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
* Supported color formats: [[YV12]]
<br>
<br>
== Requirements: ==
== [[Script variables|Syntax and Parameters]] ==
:- AviSynth 2.5.8 or later
:{{Template:FuncDef|gnoise (''clip'', ''float'' "sigma", ''int'' "seed", ''bool'' "color", ''bool'' "temporal", ''bool'' "info")}}
:- Supported color formats: [[YV12]]
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only
<br>
<br>
== Syntax and Parameters ==
::{{Par2| |clip| }}
:{{Template:FuncDef|GNoise (clip, float "sigma", int "seed", bool "color", bool "temporal")}}
:::Input clip.
<br>
<br>
::{{Par|sigma|float|10.0}}
::{{Par2|sigma|float|10.0}}
:::Controls the amount of noise. Higher values increase noise.
:::Controls the amount of noise. Set at 0.0 and noise will be disabled. As usual higher values increase noise.
<br>
<br>
::{{Par|seed|int|96}}
::{{Par2|seed|int|96}}
:::Specifies a repeatable grain sequence.
:::Specifies a repeatable grain sequence. Each value will produce a unique pattern.
<br>
<br>
::{{Par|color|bool|false}}
::{{Par2|color|bool|false}}
:::If true, noise will be added to the chroma (U/V) also.  
:::If true, noise will be added to the chroma (U/V) also.  
<br>
<br>
::{{Par|temporal|bool|false}}
::{{Par2|temporal|bool|false}}
:::False produces static noise, true gives dynamic noise.
:::False produces static noise, true gives dynamic noise.
<br>
<br>
::{{Par2|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. 
<br>
== Examples ==
== Examples ==
gnoise with default settings:
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  GNoise(sigma=2, seed=96, color=false, temporal=false)
  gnoise(sigma=10, seed=96, color=false, temporal=false, info=false)
<br>
<br>
== Changelog ==
== Changelog ==
  R5 [http://web.archive.org/web/20070717174052/http://soulhunter.chronocrossdev.com/data/gnoise_r5.zip 2006-08-11:]
Version      Date            Changes<br>
      - Undocumented update<br>
r5          2006-08-11      - Add undocumented "info" parameter<br>
  R4 [http://www.64k.it/andres/data/avisynth/gnoise_r4.zip 2006-06-18:]
r4          2006-06-18      - Initial public release
      - Initial public release
<br>
== Archived Downloads ==
{| class="wikitable" border="1"; width="400px"
|-
!!width="100px"| Version
!!width="150px"| Download
!!width="150px"| Mirror
|-
|r5
|[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
|[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]
|}
<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.
<br>
*[http://web.archive.org/web/20071031023422/http://mf.creations.nl/avs/filters/gnoise.txt Archive.org] - GNoise readme by mf
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[External_filters#Effects|External Filters]] &larr;'''
'''Back to [[External_filters#Effects|External Filters]] &larr;'''

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

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")


clip   =
Input 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.


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