Log in

View Full Version : Need help adding text/subtitle on video...


oscdude
19th June 2005, 22:34
Here is what I want to do. I have a video of a concert I recorded a couple of years ago. At the beginning of each song I want to put a text stating the name of the song and where it was performed. Can anyone help me out?
I tried looking in avisynth.org but it got me all confused.
Thanks in advance.

tsp
19th June 2005, 22:40
I will ahve to note down the framenumber where you want the subtitle (use virtualdub)
then adding this line to your script should do it:

ApplyRange(1000,1100,"subtitle","Song Name")

where 1000 is the start frame and 1100 is the endframe. Read the doc for applyrange and subtitle if you want more information

gircobain
19th June 2005, 23:22
Actually it is just simpler to use the following syntax:
Subtitle("Text", x, y, first_frame, last_frame)