MPlayerNoise

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Links)
m
 
(One intermediate revision by one user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Adjustment_filters|Effects}}
+
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}}
{{Filter
+
{{Filter3
 
|{{Author/bergi}}
 
|{{Author/bergi}}
 
|20041020s
 
|20041020s
Line 6: Line 6:
 
|Effects
 
|Effects
 
|
 
|
* YV12
+
|[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
|[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]}}
+
|6=[http://forum.doom9.org/showthread.php?t=84181 Doom9 Thread]}}
<br>
+
 
== Description ==
 
== Description ==
:Adds noise to the image using the MPlayer routines.
+
Adds noise to the image using the MPlayer routines.<br>
 
<br>
 
<br>
== Requirements: ==
+
== Requirements ==
:- AviSynth 2.5.8 or later
+
* AviSynth 2.5.8 or later
:- Supported color formats: [[YV12]]
+
* 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  
+
* [[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 ==
+
== [[Script variables|Syntax and Parameters]] ==
 
:{{Template:FuncDef|MPlayerNoise(clip, int "strength_y", int "strength_uv")}}
 
:{{Template:FuncDef|MPlayerNoise(clip, int "strength_y", int "strength_uv")}}
 
<br>
 
<br>
::{{Par|strength_y|int|0}}
+
::{{Par2| |clip| }}
 +
:::Input clip.
 +
<br>
 +
::{{Par2|strength_y|int|0}}
 
:::Noise level in the Y plane. By default the Y plane is not processed. To process adjust value, higher values increase noise.
 
:::Noise level in the Y plane. By default the Y plane is not processed. To process adjust value, higher values increase noise.
 
<br>
 
<br>
::{{Par|strength_uv|int|0}}
+
::{{Par2|strength_uv|int|0}}
 
:::Noise level in the UV planes. By default the UV planes are not processed. To process adjust value, higher values increase noise.
 
:::Noise level in the UV planes. By default the UV planes are not processed. To process adjust value, higher values increase noise.
 
<br>
 
<br>
::<span style="color:red">'''Note:'''</span>
+
::<span style="color:red">'''Note:'''</span> Parameter names included in the official documentation are incorrect. This has been revised and corrected in the documentation above.  
:::Parameter names included in the official documentation are incorrect. This has been revised and corrected in the documentation above.  
+
 
<br>
 
<br>
 
== Examples ==
 
== Examples ==
Line 38: Line 39:
 
       - Initial release
 
       - Initial release
 
<br>
 
<br>
== Links ==
+
==External Links ==
 
*[http://forum.doom9.org/showthread.php?t=84181 Doom9 Forum] - MPlayerNoise discussion.
 
*[http://forum.doom9.org/showthread.php?t=84181 Doom9 Forum] - MPlayerNoise discussion.
 
*[http://avisynth.nl/users/warpenterprises/files/bergfiltercollection_5F25_dll_20041019.zip Avisynth.nl] - Archived download.
 
*[http://avisynth.nl/users/warpenterprises/files/bergfiltercollection_5F25_dll_20041019.zip Avisynth.nl] - Archived download.
<br>
 
 
<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:03, 22 February 2015

Abstract
Author bergi
Version 20041020s
Download bergfiltercollection20041020s.zip
Category Effects
License
Discussion Doom9 Thread

Contents

[edit] Description

Adds noise to the image using the MPlayer routines.

[edit] Requirements

  • AviSynth 2.5.8 or later
  • Supported color formats: YV12
  • Progressive input only


[edit] Syntax and Parameters

MPlayerNoise(clip, int "strength_y", int "strength_uv")


clip   =
Input clip.


int  strength_y = 0
Noise level in the Y plane. By default the Y plane is not processed. To process adjust value, higher values increase noise.


int  strength_uv = 0
Noise level in the UV planes. By default the UV planes are not processed. To process adjust value, higher values increase noise.


Note: Parameter names included in the official documentation are incorrect. This has been revised and corrected in the documentation above.


[edit] Examples

Add a little bit of noise to the luma (Y) channel.

AviSource("Blah.avi")
MPlayerNoise(strength_y=7, strength_uv=0)


[edit] Changelog

  v20041020s 2004-10-20:
     - Initial release


[edit] External Links




Back to External Filters

Personal tools