Log in

View Full Version : FadeOut each video segment


komaklar
26th July 2002, 15:10
hi!

maybe a newbie-question, but i've several holiday clips and want to join them!
at the end of each clip i want to use the fadeout option!
my script looks like this:

AviSource("c:\Dv temp\superandi.avi")+AviSource("c:\Dv temp\assisi.avi")+AviSource("c:\Dv temp\fettsack hagen.avi")

how to implement fadeout for each clip?!:confused:
komaklar

Wilbert
26th July 2002, 15:20
See AviSynth Q&A: Q26 (if you choose to use the dissolve filter you will need AviSynth v2.02, which can be found here (http://sourceforge.net/projects/avisynth2/) see also Q2).

frank
26th July 2002, 15:22
clip1=AVISource("c:\ ").FadeOut(25)
clip2=AVISource("c:\ ").FadeOut(25)
...

clip=clip1+clip2
return clip