I use avidemux for all my editing of home movies and I feel I know it pretty well. But it is not capable of what I want to do in one instance and I am looking for suggestions.
We built a house and I took pictures of the various stages of construction, always from the exact same spot. I have cropped these pictures in Photoshop so that, as I move from one picture to the next, everything is perfectly lined up and you can see the house becoming more and more complete.
I want to create a video that fades from one picture to the next. Really, just like a slideshow.
I've dropped JPEGs into my home movies before. Avidemux allows you to just drag and drop a JPEG, adding 0.40 seconds to the length, and then I just copy & paste that segment over and over until it becomes the length I want.
I want each photo to be onscreen for 5 seconds and have a 1 second fade between the images. One will fade out while the next picture simultaneously fades in.
The problem with avidemux's fade filter is that it only fades out. Thus, I could make one frame (picture) fade out over a specified amount of time, but the next picture can not fade in.
Fade-to-black works both ways (in and out), but that's not really what I want. I want one image to blend seamlessly into the next.
I found an old post describing what I want done using virtualdub, but as it hasn't been updated in years, I was looking for something more current.
I plan to continue using avidemux regularly as it does everything I need to do, with this exception. So I'd like to learn of something with a small footprint and small learning curve.
Thanks for reading and for any suggestions!
+ Reply to Thread
Results 1 to 10 of 10
-
-
VirtualDub2 is an updated version of VD. Lots of filters are also available from http://www.infognition.com/VirtualDubFilters/
But other members may have better suggestions.
And welcome to our forums. -
-
-
See smrpix's reply. In addition, they offer a free 30-day trial. If you are only doing this once, you can download the Vegas Movie Studio version (i.e., the cheap one), do your project, and then delete the software.
-
What you want is called a crossfade or dissolve. Pretty much every video editor will let you do it. Here's an AviSynth script that will convert a series of images to a slideshow with each frame displayed for 5 seconds and 1 second of crossfade between them.
Code:ImageSource("pic%05d.jpg", 0, 9) # load 10 frames (0 to 9) with names in the form pic00000.jpg, pic00001.jpg, pic00002.jpg... AssumeFPS(1) # each frame appears once, assume it's 1 fps ChangeFPS(5) # duplicate frames to make 5 of each ConvertFPS(150) # interpolate between frames to make 30 frames from each original frame, creates crossfade between original images AssumeFPS(30) # specify 30 fps output
Similar Threads
-
JVC HR-S7600EK VHS video fading in and out
By DasHHat in forum MediaReplies: 8Last Post: 21st Jul 2024, 08:46 -
AviSynth - Transparent Fading
By lomaidala in forum EditingReplies: 29Last Post: 16th Mar 2018, 18:23 -
How can i achieve this blurry fading effect?
By grooveline in forum EditingReplies: 1Last Post: 4th Feb 2018, 10:41 -
Fading Between Scenes
By ab-tools in forum Newbie / General discussionsReplies: 10Last Post: 6th Jul 2017, 15:03 -
MP4s Fading In and Out
By box-turtle in forum Software PlayingReplies: 1Last Post: 22nd Jan 2015, 18:52