tacman1123
18th June 2007, 23:09
I'm new to AviSynth, and am trying to use it to automate the display of some video clips (actually, the creation of a short video). I'm stuck on how to put a nice caption on top of an avi. I see that there's a Subtitle() filter (is that the right word, filter? method? function?), but that's fairly limited. Also, I can't seem to have it apply to only one part of the avi. What I'm really trying for is to have 2+ clips, captioned with name of the person speaking, fading out between them. So basically
peter = DirectShowSource("peter.avi")
peter.Subtitle("Peter") <--- this doesn't exist
paul = DirectShowSource("paul.avi")
paul.Subtitle("Paul");
content = Dissolve(peter, paul, 40);
title + content + closing_credits <- defined elsewhere
I'm also trying to figure out how to put a title screen at the beginning of all this ("Speaking Out...Starring Peter and Paul"), not sure how to do that either.
It's possible, of course, that Avisynth is not the tool to do this, since really what I'm trying to do is put a bunch of clips together, maybe VirtualDub or something else is a better solution. If that's true, could someone point me in the right direction?
Thanks!
Tac
peter = DirectShowSource("peter.avi")
peter.Subtitle("Peter") <--- this doesn't exist
paul = DirectShowSource("paul.avi")
paul.Subtitle("Paul");
content = Dissolve(peter, paul, 40);
title + content + closing_credits <- defined elsewhere
I'm also trying to figure out how to put a title screen at the beginning of all this ("Speaking Out...Starring Peter and Paul"), not sure how to do that either.
It's possible, of course, that Avisynth is not the tool to do this, since really what I'm trying to do is put a bunch of clips together, maybe VirtualDub or something else is a better solution. If that's true, could someone point me in the right direction?
Thanks!
Tac