Welcome Guest ( Log In | Register )


Important

The forums will be closing permanently the weekend of March 15th. Please see the notice in the announcements forum for details.

 
Adding Text / Fading In & Out, Adding Text / Fading in & out
« Next Oldest | Next Newest » Track this topic | Email this topic | Print this topic
Faultisurown
Posted: Dec 2 2011, 09:58 PM


Newbie


Group: Members
Posts: 1
Member No.: 33720
Joined: 2-December 11



Hey guys, I have recently downloaded and been using virtual dub. I just have some general questions. I taught myself how to compress & add music. However, I have not been able to figure out how to add Text say on a intro for a film. Like say I wanted to have a black background and in white text my name and what the movie was about. Also im looking and can't figure out how to fade a clip. So before it switches to the next clip i would like it to fade out of the old one and maybe spin while it opens the next.
 
     Top
malky
Posted: Dec 6 2011, 10:13 PM


Advanced Member


Group: Members
Posts: 290
Member No.: 22386
Joined: 6-November 07



You could install AviSynth and use the script in VirtualDub.
Create a .bmp with your text message with same resolution as the AVI file.
Copy the code into Notepad and save as an .avs file.
Drag the .avs file into VirtualDub.
When saving the new file out of VirtualDub, select a video and audio compressor.


CODE


avisource("c:\path\to\clip.avi")
AssumeFPS(25)
source = last
ImageSource("c:\path\to\mypic.bmp",end=250,fps=25).ConvertToYV12()
audiodub(last, blankclip(source,length=250))
last++source

#path to avi and bmp required
#bmp is same resolution as avi - in this case 576 x 320
#end=250, is 250 frames @ 25fps = ten seconds of running time
 
    Top
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
1 replies since Dec 2 2011, 09:58 PM Track this topic | Email this topic | Print this topic

<< Back to Newbie Questions