StaticNoiseC

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m
m (Requirements: AviSynth 2.6)
Line 13: Line 13:
 
<br>
 
<br>
 
== Requirements ==
 
== Requirements ==
* AviSynth 2.5.8 or [http://forum.doom9.org/showthread.php?t=168764 later]
+
* AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
 
* [[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]]

Revision as of 15:06, 7 June 2015

Abstract
Author histamine
Version 20110108b
Download StaticNoiseC20110108b.zip
Category Effects
License GPLv2
Discussion NMM-HD Forum [Chinese]

Contents

Description

Generates static noise by using the Mersenne Twister random number generator.

Requirements


Syntax and Parameters

StaticNoiseC (clip, int "var", int "seed", bool "Y", bool "UV" )


clip   =
Input clip.


int  var = 2
Controls the amount of static noise.
Range: 2 - 100


int  seed = -1
Specifies a repeatable grain sequence. Value must be greater than or equal to -1.


bool  Y = true
Dictates if the luma(Y) plane gets processed or not.


bool  UV = false
Dictates if the chroma(UV) planes gets processed or not.


Examples

StaticNoiseC with default settings:

AviSource("Blah.avi")
StaticNoiseC(var=2, seed=-1, Y=true, UV=false)


Changelog

Version          Date            Changes
20110108b 2011/01/08 - Optimize
20110108 2011/01/08 - Initial release


Archived Downloads

Version Download Mirror
20110108b StaticNoiseC20110108b.zip StaticNoiseC20110108b.zip


External Links




Back to External Filters

Personal tools