Depansafe
From Avisynth wiki
		(Redirected from DepanSafe)
		
		
| Abstract | |
|---|---|
| Author | Tophf | 
| Version | 2014/11/01 | 
| Download | depansafe.avsi | 
| Category | Stabilizers | 
| License | |
| Discussion | |
| Contents | 
Description
Another stabilization script. Uses DePan and MDepan.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: YV12
Required Plugins
Latest versions of the following filters are recommended unless stated otherwise.
- DePan
- MVTools
- Repair - part of the RemoveGrain v1.0b package.
- RgTools - recommended drop-in replacement for Repair!
Syntax and Parameters
- depansafe ( clip c, float "dxmax", float "dymax", float "error", clip "prefilter", bool "info", string "log" )
- clip  c =   
 - Input clip.
 
 
- clip  c =   
- float  dxmax = 1.5 
 
- float  dymax = 1.5 
 - Limit of x and y shift.
 
 
- float  dxmax = 1.5 
- float  error = 4.0 
 - erroris the maximum mean motion difference.
 
 
- float  error = 4.0 
- clip  prefilter = c.removegrain(4,4) 
 - Optional prefiltered clip to use in motion analysis.
 
 
- clip  prefilter = c.removegrain(4,4) 
- bool  info = false 
 - infoparameter allows to type global motion info for debug.
 
 
- bool  info = false 
- string  log = "" 
 - logparameter allows to set log file name in DeShaker, Depan format.
 
 
- string  log = "" 
Examples
depansafe with default settings:
AviSource("Blah.avi") depansafe()
External Links
Back to External Filters ←
