I'm trying to use .SUB text file with AviSynth.
I could load and display the subtitles, but I would like to reduce the size of the used font.
From VobSub docs I found that this is the usage of the filter:
Code:
TextSub("path\filename.ext"[, charset[, fps]])
Any one knows what is the
charset parameter?
I tried these two scripts and both gave me the exact same output:
TextSub("d:\videos\subfile.sub", 20, 23.97)
and
TextSub("d:\videos\subfile.sub", 12, 23.97)
How can I use a smaller font size with AVS+TextSub?