NoiseGenerator
From Avisynth wiki
Abstract | |
---|---|
Author | Shubin |
Version | 20050616 |
Download | noisegenerator_25_dll_20050616.zip |
Category | Effects |
License | |
Discussion |
Contents |
Description
Another noise generator. This filter is based on NoiseGenerators by Ross Thomas and uses some of its codebase. Unlike the original, this filter is now for AviSynth 2.5 and has different parameters.
Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: RGB24, RGB32, YUY2, YV12
Syntax and Parameters
- NoiseGenerator (clip, bool "Gaussian", int "Amount", bool "LumaOnly")
- clip =
- Input clip
- clip =
- bool Gaussian = false
- If Gaussian parameter is false, a uniform noise is generated.
- bool Gaussian = false
- int Amount = 10
- Amount specifies how much noise should be added.
- In RGB if noise is added to black picture, it should be >0, if the picture is almost white, it should be <0.
- int Amount = 10
Examples
NoiseGenerator with default settings:
AviSource("Blah.avi") NoiseGenerator(Gaussian=false, Amount=10, LumaOnly=false)
Changelog
Changes 2005-06-16: - Initial release
External Links
- videohelp.eu - NoiseGenerators by Ross Thomas.
Back to External Filters ←