|
|
| 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. |
 |
| 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 | |
 |