Xy-VSFilter
From Avisynth wiki
Abstract | |
---|---|
Author | Gabest, guliverkli2, cyberbeing, pinterf |
Version | v3.2.0.802 |
Download | xyVSFilterSubFilter-pfmod-3.2.0.802.7z |
Category | Subtitling |
License | GPLv2 |
Discussion | Doom9 Forum |
Contents |
Description
xy-VSFilter Project (High Performance VSFilter Compatible Subtitle Filters)
VSFilter includes the following functions:
- VobSub
- TextSub
- TextSubSwapUV
- MaskSub
Requirements
Syntax and Parameters
TextSub
Adds subtitles from srt, sub, psb, smi, ssa, ass file formats.
- TextSub(clip, string "file", int "charset", float "fps", string "vfr")
- clip =
- Input clip.
- clip =
- string file =
- Path to subtitles file.
- string file =
- int charset = 1
- int charset = 1
- float fps = -1.0
- float fps = -1.0
- string vfr = ""
- Path to timecodes V2 file.
- string vfr = ""
VobSub
Adds subtitles from a vob sequence.
- VobSub (clip, string "file")
- clip =
- Input clip.
- clip =
- string file =
- Path to subtitles file, only .idx and .sub files supported.
- string file =
MaskSub
Creates a subtitle mask. See here for more info.
- TextSubMod(clip, string "file", int "width", int "height", float "fps", int "length", int "charset", string "vfr", string "pixel_type")
- clip =
- Input clip.
- clip =
- string =
- Path to subtitles file.
- string =
- int width =
- int height =
- Width and height.
- int width =
- float fps =
- FPS
- float fps =
- int length =
- Length
- int length =
- int charset =
- Character set.
- int charset =
- string vfr = ""
- Path to timecodes V2 file.
- string vfr = ""
- string pixel_type = "RGB32"
- Pixel type, can be set to:
"RGB32", "YUV420P10" or "YUV420P16"
- Pixel type, can be set to:
- string pixel_type = "RGB32"
TextSubSwapUV
???
- TextSubSwapUV (bool "invert")
- clip =
- Input clip.
- clip =
- bool invert = false
- Invert: true or false.
- bool invert = false
Examples
AviSource("Blah.avi") TextSub(file="subtitle.ass")
AviSource("Blah.avi") VobSub(file="subtitle.sub")
Changelog
See GitHub releases page: https://github.com/pinterf/xy-VSFilter/releases
External Links
- GitHub - Source code repository (latest version).
.
Back to External Filters ←