PDA

View Full Version : How to permanently add text to a particular part of a video using avisynth?


Arshad07
30th September 2009, 01:04
Title says it all ;)

Like for e.g, if i want to add 4 words at different place on the movie, how can i do that using avisynth?

neuron2
30th September 2009, 01:15
Subtitle()

Arshad07
30th September 2009, 01:24
You misunderstood. :)

http://i35.tinypic.com/vi2uc2.jpg

Like that ^ but using avisynth for a movie, not a still image.

thewebchat
30th September 2009, 01:29
Subtitle() takes parameters. Aside from that, you could do:
a = dongs().subtitle("a")
b = superdongs().subtitle("b")
c = uberdongs().subtitle("c")
d = advanceddongs().subtitle("d")
StackVertical(StackHorizontal(a,b),StackHorizontal(c,d))

neuron2
30th September 2009, 02:04
You misunderstood. :) LOL. I think it is you that is not inderstanding. But carry on.

Arshad07
30th September 2009, 02:35
Oh ^ sorry man. Big thanks to you all ! Will report back when i get home.