MPlayerNoise: Difference between revisions
From Avisynth wiki
Jump to navigationJump to search
m →Links |
mNo edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{ | {{FilterCat4|External_filters|Plugins|Adjustment_filters|Effects}} | ||
{{ | {{Filter3 | ||
|{{Author/bergi}} | |{{Author/bergi}} | ||
|20041020s | |20041020s | ||
| Line 6: | Line 6: | ||
|Effects | |Effects | ||
| | | | ||
|[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]}} | ||
== Description == | == Description == | ||
Adds noise to the image using the MPlayer routines.<br> | |||
<br> | <br> | ||
== Requirements | == Requirements == | ||
* AviSynth 2.5.8 or later | |||
* 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 == | == [[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> | ||
::{{ | ::{{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> | ||
::{{ | ::{{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. | ||
<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> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Effects|External Filters]] ←''' | '''Back to [[External_filters#Effects|External Filters]] ←''' | ||
Latest revision as of 07:03, 22 February 2015
| Abstract | |
|---|---|
| Author | bergi |
| Version | 20041020s |
| Download | bergfiltercollection20041020s.zip |
| Category | Effects |
| License | |
| Discussion | Doom9 Thread |
Description
Adds noise to the image using the MPlayer routines.
Requirements
- AviSynth 2.5.8 or later
- Supported color formats: YV12
- Progressive input only
- MPlayerNoise(clip, int "strength_y", int "strength_uv")
- clip =
- Input clip.
- 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_y = 0
- 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.
- int strength_uv = 0
- Note: Parameter names included in the official documentation are incorrect. This has been revised and corrected in the documentation above.
Examples
Add a little bit of noise to the luma (Y) channel.
AviSource("Blah.avi") MPlayerNoise(strength_y=7, strength_uv=0)
Changelog
v20041020s 2004-10-20: - Initial release
External Links
- Doom9 Forum - MPlayerNoise discussion.
- Avisynth.nl - Archived download.
Back to External Filters ←