I have some still images which are gif format, whats the easiest way to turn this still image into a 10 second 720x576 avi file.
Craig
+ Reply to Thread
Results 1 to 12 of 12
-
-
I would use Premiere or any video editing software.
Helmut
# SNiGLA @ EFnet
# vcdhelp @ EFnet
# vcdhelp @ DALNet -
WinXP or ME? see below
http://www.microsoft.com/windowsxp/home/using/howto/movies/firststeps.asp -
As usual I add the Avisynth solution. Since Avisynth does not work with still graphic formats natively, you have to use the Avisynth BMP Loader plugin. You guess right, the source picture must be a *.bmp. So I suggest to convert the *.gif to *.bmp and resize to 720x576 at once. The rest is easy.
Code:LoadPlugin("Avisynth BMP Loader.dll") BlankClip(2500,720,576,"YUY2",25,1,44100,true,true,$000000) AvisynthBMP_Loader("D:\dir","filename.bmp")
LoadPlugin("Avisynth BMP Loader.dll")
BlankClip(2500,480,576,"YUY2",25,1,44100,true,true ,$000000)
AvisynthBMP_Loader("D:\dir","filename.bmp")
BicubicResize(528,576)
AddBorders(96,0,96,0)
Then open the *.avs in VirtualDub and convert to *.avi. -
Sorry, the 2nd line of the 2nd script is
BlankClip(2500,150,150,"YUY2",25,1,44100,true,true ,$000000) -
Thanks again Truman, as you seem to be the man on avisynth I have another question for you.
I want to be able to superimpose one image on the top of another, but this image will be a smaller image located in the bottom right hand corner of the screen.
To let you know what I am doing I have a video clip of a damper test rig and I want to show an oscilloscope display of the force x displacement curve in the bottom right hand corner of the screen. Can you tell me if this is possible using avisynth.
Craig -
Nice brainfood
. I believe we have to use a logo filter to do that. Since there is no logo filter for Avisynth, I will test it with Donald Graft's logo filter. I will let you know whether it works.
-
I want to be able to superimpose one image on the top of another, but this image will be a smaller image located in the bottom right hand corner of the screen.
LoadPlugin("mpeg2dec2.dll")
big=mpeg2source("D:\matrix\matrix.d2v").BicubicRes ize(448,318,0,0.5,24,76,672,424).AddBorders(16,129 ,16,129)
small=mpeg2source("D:\matrix\matrix.d2v").BicubicR esize(80,50,0,0.5,0,83,720,410)
height1=400
height2=50
height3=126
width1=250
width2=80
width3=150
part1=big.crop(0,0,480,height1)
part2a=big.crop(0,height1,width1,height2)
part2b=small
part2c=big.crop(width1+width2,height1,width3,heigh t2)
part2=StackHorizontal(part2a,part2b,part2c)
part3=big.Crop(0,height1+height2,480,height3)
StackVertical(part1,part2,part3)
-
Originally Posted by craigtucker
Load them into Animation Shop 3 and save them out as an AVI.
It comes with PaintShop Pro. http://www.jasc.com/ -
I use VCDEasy to create a still mpeg picture from e.g. a jpg, then copy/paste it a couple of times and the use TMPGenc to join allof the mpg still images. Each image takes about 1 second, so joining 10 copies of the created still mpeg file, creates a VCD compliant movie of 10 seconds. In TMPGEnc, just do : MPEG tools ... Join and Cut ... and select Type : MPEG-1 Video CD. Workes great for making trailors out of pictures e.g. created with Photoshop
-
HI ALL.
im thinking about your post...
why u dont think Flash mx, maybe it helps u...
bye
Similar Threads
-
Want to insert image onto a gif...
By zhemp in forum Newbie / General discussionsReplies: 0Last Post: 4th Aug 2011, 13:23 -
date creation of a GIF image?
By sdsumike619 in forum ComputerReplies: 4Last Post: 29th Aug 2010, 18:51 -
How to make a moving .GIF image?
By Jeikobu in forum MacReplies: 4Last Post: 15th Aug 2008, 11:28 -
How to convert dvd image file to .Avi
By AkaTaKlysm in forum Newbie / General discussionsReplies: 5Last Post: 15th Apr 2008, 10:02 -
can someone make me a .gif image file?
By NateDizzle in forum ComputerReplies: 5Last Post: 22nd Dec 2007, 21:56