A dozen bonding tool PNG in video

I took almost 20 PNG screenshots. I want to stick them in a video. Could you recommend a tool?

It would be better if it was a smooth change from one image to another, like the movement of movement in Flash.

Using the actual flash is not an option. Because the tool must be free and run on Linux.

+5
source share
6 answers

Use mplayer mencoder:

for i in *.png; do for j in `seq 1 20`; do echo $i; done; done > frames.txt
mencoder mf://@frames.txt -mf fps=5:type=png \
  -audiofile audio.mp3 -oac copy \
  -of lavf -ovc lavc \
  -lavcopts vcodec=flv:mbd=2:v4mv:mv0:trell:cbp:last_pred=3:vbitrate=200 \
  -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames \
  -o video.flv
+4
source

This worked for me:

  • Install ffmpeg.
  • Create your png with a continuous number in the file name, e.g. img0001.png, img0002.png, ..., ... img5467.png.
  • Then run ffmpeg -qscale 5 -r 20 -b 9600 -i img% 04d.png movie.mp4

: http://www.miscdebris.net/blog/2008/04/28/create-a-movie-file-from-single-image-files-png-jpegs/

+13

png2mng.pl , Perl script.

+1

, , , :

script ?

+1

Perhaps you could use ffmpeg - I used my "image2" codec to turn mpeg into a series of JPEG frames, I'm pretty sure the opposite is possible. If he cannot read PNG, you can use ImageMagick to convert PNG to JPEG in the first place.

0
source

The Mach video (http://www.gold-software.com/download8598.html) seems like a good option for you. Although for winones it is shareware.

-AD

-1
source

All Articles