Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > VirtualDub, VDubMod & AviDemux

Reply
 
Thread Tools Search this Thread Display Modes
Old 14th August 2021, 06:45   #1  |  Link
ss2
Registered User
 
Join Date: Feb 2015
Posts: 2
merge & fade two videos

With VirtualDub2 I've been trying to import two clips and set the following settings with FrameTweaker and FadeFX but not having luck making it like this example.

In the example its two separate clips merged into one.
  1. Fades from black (0 - 50 frames)
  2. From the example video at 0:28 it looks like video 1 is fading out and some how video 2 is already behind it as it fades out and appears smoothly (I tried and it just appears as the next video no smooth)
  3. Fades out to black last 50 frames
ss2 is offline   Reply With Quote
Old 15th August 2021, 19:59   #2  |  Link
Richard1485
Guest
 
Posts: n/a
I don't know how to achieve what you want using VirtualDub2's filters, but it's easily done with an AviSynth script (a text file saved with the .avs extension) that you can open in VirtualDub2 (File→Open video file...):
Code:
vid1=AviSource("vid1.avi")
vid2=AviSource("vid2.avi")

Dissolve(
\vid1.FadeIn0(50),
\vid2.FadeOut0(50),
\24)#change the length of the fade if necessary
You could use FFmpegSource2("vid.mkv", atrack=-1), etc, instead of AviSource() to load the videos.

Alternatively, just use an NLE, such as Kdenlive (free).

Last edited by Richard1485; 15th August 2021 at 20:10.
  Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 23:10.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.