Yadifmod
From Avisynth wiki
(Difference between revisions)
(yadifmod26: update documentation and page to match Chikuzen's version) |
m (→Requirements) |
||
Line 22: | Line 22: | ||
<br> | <br> | ||
* Windows Vista SP2 or later | * Windows Vista SP2 or later | ||
− | * Microsoft | + | * [https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads Microsoft Visual C++ 2015 Redistributable Package (x86 / x64)] |
+ | :<span style="color:red">***</span> <tt>vcredist_x86.exe</tt> is required for <tt>TMM2-x86</tt> | ||
+ | :<span style="color:red">***</span> <tt>vcredist_x64.exe</tt> is required for <tt>TMM2-x64</tt> | ||
<br> | <br> | ||
Revision as of 14:29, 15 May 2020
Abstract | |
---|---|
Author | tritical, Chikuzen |
Version | v0.0.0 |
Download | yadifmod26-0.0.0.zip |
Category | Deinterlacing |
License | GPLv2 |
Discussion | Doom9 Thread |
Contents |
Description
YadifMod for AviSynth 2.6.x / AviSynth+ by Chikuzen
Modified version of Fizick's AviSynth filter port of Yadif from MPlayer. This version doesn't internally generate spatial predictions, but takes them from an external clip. It's also not an AviSynth_C plugin (just a normal one).
Requirements
- Windows Vista SP2 or later
- Microsoft Visual C++ 2015 Redistributable Package (x86 / x64)
- *** vcredist_x86.exe is required for TMM2-x86
- *** vcredist_x64.exe is required for TMM2-x64
Syntax and Parameters
- yadifmod (clip, int "order", int "field", int "mode", clip "edeint", int "opt")
- clip =
- Input clip.
- clip =
- int order = -1
- Sets the field order.
- int order = -1
- -1 : use AviSynth's internal parity value
- 0 : bff (bottom field first)
- 1 : tff (top field first)
- int field = -1
- Controls which field to keep when using same rate output. This parameter doesn't do anything when using double rate output.
- int field = -1
- -1 : set equal to order
- 0 : keep bottom field
- 1 : keep top field
- int mode = 0
- Controls double rate vs same rate output, and whether or not the spatial interlacing check is performed.
- int mode = 0
- 0 : same rate, do spatial check
- 1 : double rate, do spatial check
- 2 : same rate, no spatial check
- 3 : double rate, no spatial check
- clip edeint = NULL
- Clip from which to take spatial predictions. This clip must be the same width, height, and colorspace as the input clip.
- If using same rate output, this clip should have the same number of frames as the input. If using double rate output, this clip should have twice as many frames as the input.
- clip edeint = NULL
Examples
yadifmod with default settings:
AviSource("blah.avi") yadifmod(order=-1, field=-1, mode=0, opt=0)
Changelog
Version Date Changes
V0.0.0 2016/03/01 - Rewite for Avisynth 2.6 and Avisynth+ - Support all planar YUV colorspaces - Change "opt" default to 1 - x64 build v1.0 2007/09/15 - Initial Release
Archived Downloads
Version | Download | Mirror |
---|---|---|
v1.0 | yadifmod_v1.zip |
External Links
- Doom9 Forum - yadifmod discussion.
- GitHub - Source code repository.
Back to External Filters ←