FillBorders
From Avisynth wiki
(Difference between revisions)
(add bit depth support, download links) |
|||
Line 53: | Line 53: | ||
|- | |- | ||
!r1 | !r1 | ||
− | | | + | | |
| | | | ||
|} | |} |
Revision as of 01:39, 11 June 2019
Abstract | |
---|---|
Author | dubhater / Asd |
Version | r1 |
Download | FillBorders |
Category | Borders and Cropping |
License | WTFPL |
Discussion |
Contents |
Description
This is a simple filter that fills the borders of a clip, without changing the clip's dimensions.
Requirements
Syntax and Parameters
- FillBorders (clip, int "left", int "top", int "right", int "bottom", int "mode")
- clip =
- Input clip.
- clip =
- int left = 0
- int top = 0
- int right = 0
- int bottom = 0
- Number of pixels to fill on each side. These can be any non-negative numbers, within reason. If they are all 0, the input clip is simply passed through.
- int left = 0
- int mode = 0
- 0 : Fills the borders exactly like the AviSynth filter FillMargins, version 1.0.2.0. This mode is similar to mode 1, except that each pixel at the top and bottom borders is filled with a weighted average of its three neighbours from the previous line.
- 1 : Fills the borders using the outermost line or column (aka "repeat").
- 2 : Fills the borders by mirroring.
- int mode = 0
Examples
AviSource("Blah.avi") FillBorders(left=5,top=7, right=2, bottom=0)
Changelog
Version Date Changes
r1 2019/04/10 - first release
Archived Downloads
Version | Download | Mirror |
---|---|---|
r1 |
External Links
- GitHub - VapourSynth version
Back to External Filters ←