VSFilterMod: Difference between revisions
From Avisynth wiki
Jump to navigationJump to search
Raffriff42 (talk | contribs) redirect for convenient searching |
add documentation (WIP) |
||
| Line 1: | Line 1: | ||
{{FilterCat5|External_filters|Plugins|Plugins_x64|Adjustment_filters|Subtitling}} | |||
{{ | {{Filter3 | ||
| | |||
| R5.2.1 | |||
| [https://github.com/sorayuki/VSFilterMod/releases VSFilterMod_bin.7z] | |||
| Subtitling | |||
| [http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | |||
|6= [http://forum.doom9.org/showthread.php?t=152855 Doom9 Forum]}} | |||
<br> | |||
== Description == | |||
[[VSFilterMod]] is modification of original [[VSFilter]] subtitle renderer by Gabest. This mod brings up new features and some minor bugfixes. | |||
:*VobSub: adds subtitles from a vob sequence. | |||
:*TextSubMod: adds subtitles from srt, sub, psb, smi, ssa, ass file formats. | |||
<br> | |||
== Requirements == | |||
* [http://sourceforge.net/projects/avisynth2/ AviSynth 2.6.0] [32-bit] | |||
* [[AviSynth+]] [32-bit or 64-bit] | |||
* Supported color formats: [[RGB24]], [[RGB32]], [[YV12]] | |||
<br> | |||
== [[Script variables|Syntax and Parameters]] == | |||
:{{Template:FuncDef|TextSubMod(clip, string file, int "charset", float "fps", string "vfr") }} | |||
<br> | |||
::{{Par2||clip| }} | |||
:::Input clip. | |||
<br> | |||
::{{Par2||string|}} | |||
:::Path to subtitles. | |||
<br> | |||
::{{Par2|charset|int|1}} | |||
::: | |||
<br> | |||
::{{Par2|fps|float|-1.0}} | |||
::: | |||
<br> | |||
::{{Par2|vfr|string|""}} | |||
:::Path to timecodes V2 file. | |||
<br> | |||
== Examples == | |||
[[AviSource]]("Blah.avi") | |||
TextSubMod(file="subtitle.ass") | |||
<br> | |||
== Changelog == | |||
<pre> | |||
R5.2.1 2019/07/07 - Add support for Unicode SMP | |||
R5.2 2018/08/14 - enable non-ascii filename. | |||
R5 2018/04/09 - support YUV420P10 and YUV420P16 for vapoursynth. | |||
</pre> | |||
<br> | |||
== Archived Downloads == | |||
{| class="wikitable" border="1"; width="600px" | |||
|- | |||
!!width="100px"| Version | |||
!!width="150px"| Download | |||
!!width="150px"| Mirror | |||
|- | |||
!R5.2.1 | |||
|[https://github.com/sorayuki/VSFilterMod/releases VSFilterMod_bin.7z] | |||
| | |||
|- | |||
!v | |||
| | |||
| | |||
|- | |||
!v0 | |||
| | |||
| | |||
|} | |||
<br> | |||
== External Links == | |||
*[https://github.com/sorayuki/VSFilterMod GitHub] - Source code repository (latest version). | |||
*[http://code.google.com/archive/p/vsfiltermod/ Google Code Archive] - Source code repository (original VSFilterMod). | |||
<br> | |||
<br> | |||
----------------------------------------------- | |||
'''Back to [[External_filters#Subtitling|External Filters]] ←''' | |||
Revision as of 03:08, 18 March 2020
| Abstract | |
|---|---|
| Author | |
| Version | R5.2.1 |
| Download | VSFilterMod_bin.7z |
| Category | Subtitling |
| License | GPLv2 |
| Discussion | Doom9 Forum |
Description
VSFilterMod is modification of original VSFilter subtitle renderer by Gabest. This mod brings up new features and some minor bugfixes.
- VobSub: adds subtitles from a vob sequence.
- TextSubMod: adds subtitles from srt, sub, psb, smi, ssa, ass file formats.
Requirements
- AviSynth 2.6.0 [32-bit]
- AviSynth+ [32-bit or 64-bit]
- Supported color formats: RGB24, RGB32, YV12
- TextSubMod(clip, string file, int "charset", float "fps", string "vfr")
- clip =
- Input clip.
- clip =
- string =
- Path to subtitles.
- string =
- int charset = 1
- int charset = 1
- float fps = -1.0
- float fps = -1.0
- string vfr = ""
- Path to timecodes V2 file.
- string vfr = ""
Examples
AviSource("Blah.avi") TextSubMod(file="subtitle.ass")
Changelog
R5.2.1 2019/07/07 - Add support for Unicode SMP R5.2 2018/08/14 - enable non-ascii filename. R5 2018/04/09 - support YUV420P10 and YUV420P16 for vapoursynth.
Archived Downloads
| Version | Download | Mirror |
|---|---|---|
| R5.2.1 | VSFilterMod_bin.7z | |
| v | ||
| v0 |
External Links
- GitHub - Source code repository (latest version).
- Google Code Archive - Source code repository (original VSFilterMod).
Back to External Filters ←