iparout
18th October 2005, 23:40
Hi.
I am a complete noob when it comes to scripting, so I need some help adding fade-in and fade-out effects on a video.
The source video (f:\capture-huffy.avi) has commercials, so I used the trim command to edit them out. Now, what I want to achieve is create fade-out and fade-in effects in each of the 3 segments of the video... However, when I add the FadeIO2 command at the end of the script, only the last segment fades out.
Is there an easy way to do what I want ?
My script is this :
# PLUGINS
LoadPlugin("c:\PixieDust\LoadPluginEx.dll")
LoadPlugin("E:\GORDIA~1\Msharpen.dll")
LoadPlugin("c:\PixieDust\dustv5.dll")
LoadPlugin("E:\GORDIA~1\mpeg2dec3.dll")
LoadPlugin("E:\GORDIA~1\undot.dll")
LoadPlugin("E:\GORDIA~1\decomb.dll")
LoadPlugin("E:\GORDIA~1\KernelDeInt.dll")
#LoadPlugin("E:\GORDIA~1\dgbob.dll")
#LoadPlugin("E:\GORDIA~1\Convolution3d.dll")
#LoadPlugin("E:\GORDIA~1\FluxSmooth.dll")
#LoadPlugin("E:\GORDIA~1\TomsMoComp.dll")
#LoadPlugin("E:\GORDIA~1\VSFilter.dll")
#LoadPlugin("E:\GORDIA~1\SimpleResize.dll")
Avisource("f:\capture-huffy.avi")
Trim(22,72735) ++ Trim(73473,146131) ++ Trim(146304,148783)
# DEINTERLACING (2)
KernelDeint(order=1)
#CROPPING
Crop(18,12,-14,-12)
#DENOISE
PixieDust(5)
#SHARPEN
MSharpen()
#RESIZING
LanczosResize(640,480)
Any help would be much appreciated.
Thanks in advance.
P.S. : The avi file also has audio which I want to keep, so will adding 3 fade-ins and outs make the audio go off synch ?
I am a complete noob when it comes to scripting, so I need some help adding fade-in and fade-out effects on a video.
The source video (f:\capture-huffy.avi) has commercials, so I used the trim command to edit them out. Now, what I want to achieve is create fade-out and fade-in effects in each of the 3 segments of the video... However, when I add the FadeIO2 command at the end of the script, only the last segment fades out.
Is there an easy way to do what I want ?
My script is this :
# PLUGINS
LoadPlugin("c:\PixieDust\LoadPluginEx.dll")
LoadPlugin("E:\GORDIA~1\Msharpen.dll")
LoadPlugin("c:\PixieDust\dustv5.dll")
LoadPlugin("E:\GORDIA~1\mpeg2dec3.dll")
LoadPlugin("E:\GORDIA~1\undot.dll")
LoadPlugin("E:\GORDIA~1\decomb.dll")
LoadPlugin("E:\GORDIA~1\KernelDeInt.dll")
#LoadPlugin("E:\GORDIA~1\dgbob.dll")
#LoadPlugin("E:\GORDIA~1\Convolution3d.dll")
#LoadPlugin("E:\GORDIA~1\FluxSmooth.dll")
#LoadPlugin("E:\GORDIA~1\TomsMoComp.dll")
#LoadPlugin("E:\GORDIA~1\VSFilter.dll")
#LoadPlugin("E:\GORDIA~1\SimpleResize.dll")
Avisource("f:\capture-huffy.avi")
Trim(22,72735) ++ Trim(73473,146131) ++ Trim(146304,148783)
# DEINTERLACING (2)
KernelDeint(order=1)
#CROPPING
Crop(18,12,-14,-12)
#DENOISE
PixieDust(5)
#SHARPEN
MSharpen()
#RESIZING
LanczosResize(640,480)
Any help would be much appreciated.
Thanks in advance.
P.S. : The avi file also has audio which I want to keep, so will adding 3 fade-ins and outs make the audio go off synch ?