Log in

View Full Version : Increase subs using VSFilter


Serbicon
13th October 2007, 14:44
My question is how to increase subtitle size using VSFilter, because they are too small and hard to read from distance.

Here's my script:


mpeg2source("E:\VoliMe\VoliMe.d2v")

s = crop(0,14,720,548)

b_vec2 = s.MVAnalyse(isb = true, delta = 2, blksize=8, overlap=4, sharp=0, chroma=true)
b_vec1 = s.MVAnalyse(isb = true, delta = 1, blksize=8, overlap=4, sharp=0, chroma=true)
f_vec1 = s.MVAnalyse(isb = false, delta = 1, blksize=8, overlap=4, sharp=0, chroma=true)
f_vec2 = s.MVAnalyse(isb = false, delta = 2, blksize=8, overlap=4, sharp=0, chroma=true)

s.MVDegrain2(b_vec2, b_vec1, f_vec1, f_vec2, plane=4, thsad=400)

BicubicResize(720,376)

TextSub("E:\VoliMe\VoliMe.txt")


By the way, is there any manual, help etc. for VSFilter?
Thanks.

Adub
14th October 2007, 03:51
There is a pretty decent documentation that comes with you Avisynth install.

Just go to your Avisynth install directory, go to Docs, go to English, click on "Index.htm".

There are several ways to adjust the size. Store your subs in a .ssa or .ass file format, and set the size directly in there.

Or just adjust the size of your font in the text file directly. Usually works.

Serbicon
23rd October 2007, 11:56
Thanks. :)

Adub
27th October 2007, 10:43
No problem, glad to be of service.