Stab

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(External Links: add link to Stab mod)
m (Requirements)
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Scripts|Restoration_filters}}
+
{{FilterCat4|External_filters|Scripts|Restoration_filters|Stabilizers}}
 
{{Filter3
 
{{Filter3
 
|g-force
 
|g-force
Line 15: Line 15:
 
<br>
 
<br>
 
== Requirements ==
 
== Requirements ==
*AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/files/AviSynth_Alpha_Releases/ later]
+
* [x86]: [[AviSynth+]] or [http://sourceforge.net/projects/avisynth2/ AviSynth 2.6]
 +
* [x64]: [[AviSynth+]]
 
*Supported color formats: [[YV12]]
 
*Supported color formats: [[YV12]]
  
Line 21: Line 22:
 
Latest versions of the following filters are recommended unless stated otherwise.<br>
 
Latest versions of the following filters are recommended unless stated otherwise.<br>
 
*[[DePan]]
 
*[[DePan]]
 +
*[[DePanEstimate]]
 
*<strike>Repair - part of the [[RemoveGrain v1.0b]] package.</strike>
 
*<strike>Repair - part of the [[RemoveGrain v1.0b]] package.</strike>
 
*[[RgTools]] - recommended drop-in replacement for Repair!
 
*[[RgTools]] - recommended drop-in replacement for Repair!
 
<br>
 
<br>
 +
 
== [[Script variables|Syntax and Parameters]] ==
 
== [[Script variables|Syntax and Parameters]] ==
 
:{{Template:FuncDef|Stab (clip clp, int "range", int "dxmax", int "dymax", int "mirror")}}
 
:{{Template:FuncDef|Stab (clip clp, int "range", int "dxmax", int "dymax", int "mirror")}}

Latest revision as of 18:08, 5 May 2020

Abstract
Author g-force
Version 1.0
Download Stab.avsi
Category Stabilizers
License
Discussion Doom9 Thread

Contents

[edit] Description

Simple Script to remove small high frequency jitter that appears often on old/bad transfers.

An unresolved bug in this filter can produce green tinting in seemingly random output frames. Still a suitable and effective tool for black and white footage: scripts should apply Greyscale() following Stab(). This filter may not be suitable for color footage; apply with caution.

[edit] Requirements

[edit] Required Plugins

Latest versions of the following filters are recommended unless stated otherwise.


[edit] Syntax and Parameters

Stab (clip clp, int "range", int "dxmax", int "dymax", int "mirror")


clip  clp =
Input clip.


int  range = 1
Number of previous (and also next) frames near requested frame to estimate motion.


int  dxmax = 4
Limit of x shift.


int  dymax = 4
Limit of y shift.


int  mirror = 0
Fill empty borders with mirrored from frame edge pixels (instead of black):
  • 0 - no mirror (default)
  • 1 - top
  • 2 - bottom
  • 4 - left
  • 8 - right
  • sum any of above - combination (15 - all )


[edit] Examples

Stab with default settings:

AviSource("Blah.avi")
Stab(range=1, dxmax=1, dymax=1, mirror=0)


[edit] External Links




Back to External Filters

Personal tools