Log in

View Full Version : problems with loading vd plugin


erci
5th May 2003, 20:36
Hi!

I have made subs with the help of SubRip, imo they look better then vobsub and I then want to put it in my avs script for faster encoding. The only way that I know about to put this in an avi is with textsub, a vd filter.
I want to know how I should write to use textsub in avi synth and also brightness would be good to know...

thanks
//Erci

WyldeF1r3
6th May 2003, 01:31
copied from textsub.txt which comes with a vobsub install


This is a plugin/filter for adding textual subtitles to video.

- The supported plugin interfaces are virtualdub's and avisynth's.

- Using it as a virtualdub plugin, it will reload the source file when it changes (even while encoding!).

- Avisynth usage:

LoadPlugin("textsub.vdf")
TextSub("path\filename.ext"[, charset[, fps]])


That works for avisynth 2.0x, for avisynth2.5x you need to download VSFilter.dll and load it in place of textsub.vdf. Then type the above into avisynth and it will work.

erci
6th May 2003, 08:49
thx...

how about making the video brighter? is there a filter for avi synth or do I have to load virtualdub plugin?

Wilbert
6th May 2003, 09:25
There are two filters for this: Tweak and ColorYUV (the latter is only present in v2.5).

erci
8th May 2003, 14:37
thx for the reply again.

When I try to use textsub in avi synt I get this error:
Unexpected character "["
and as usuual it says where the error are in my case line 45, column 29.

I have tried to write different things instead of the , that are after the [

since I want default charachter set I have treid to wrie DEFAULT, Default, default and I want 25 fps so instead of that , I wrote 25.

What might be the problem can anyone plz tell me.

//Erci

sh0dan
8th May 2003, 16:03
Just use:

TextSub("path\filename.ext")

erci
8th May 2003, 16:24
thx a lot it works fine

//Erci