I am looking for a tool to convert a single image (.png, .jpg, .bmp, etc) to a 5 second avi video. I usually use Sony Vegas Movie Studio 6.0, but the max resolution it will let me use 800x800. I need the video to be 1280x1024. Is there a free tool that can do this?
Edit: I could do it in VirtualDub or Avidemux, but I would have to open/append the image 150 times to make it 5 seconds long at 30fps.
Edit: Here is the solution I have come up with so far: Instead of manually appending the file 150 times, I created 150 copies of the file (150frames/30fps = 5seconds). I wrote a script using Python to copy the files, so I didn't have to copy/paste/rename every file. Then I opened the first image with VirtualDub and made sure that "Automatically load linked segments" was checked.
+ Reply to Thread
Results 1 to 6 of 6
-
Last edited by Deluge; 18th Sep 2010 at 23:38.
-
Make an AviSynth script:
ImageSource("C:\Path\To\Picture.BMP",End=149,FPS=3 0)
That plays the picture for 5 seconds. Open it in VDub and encode to whatever you like.
http://avisynth.org/mediawiki/ImageSource -
Very nice, thank you. Just to avoid confusion for anyone reading this post, it should be "FPS=30" not "FPS=3 0".
Code:ImageSource(\"C:\Path\To\Picture.BMP\",End=149,FPS=30)
-
I wrote it without the space but for some reason it showed up here with a space. After posting I tried to correct it and it didn't take. Thanks.
-
-
Similar Threads
-
how to covert .swf single image file into .bmp or .jpg
By Toastie in forum ComputerReplies: 2Last Post: 19th Aug 2013, 00:00 -
can't get ffmpeg to convert video to image sequence
By wiseant in forum Video ConversionReplies: 15Last Post: 12th Apr 2013, 08:37 -
Convert .iso into single Dvdrip
By deepwoodsv in forum Newbie / General discussionsReplies: 15Last Post: 3rd Feb 2011, 14:47 -
Pan and Zoom a Single Large Image: Which Software to Use?
By Chris Sherrick in forum Newbie / General discussionsReplies: 5Last Post: 13th Jun 2010, 01:16 -
Help – How to convert video to image and back to video
By pdesilva in forum EditingReplies: 5Last Post: 2nd Apr 2010, 15:48