convert jpg images into a video

I have a bunch of jpg images i want to turn into a video, i have tried JPGVideo but it did not work. any recommendations?


Solution 1:

You need a "stopmotion" maker: here's an overview of them, and one to download: CellSoft Take5 1.30

If you're linux, there's a "stopmotion" package ready for one-click-install.

Solution 2:

I sometimes use ImagesToVideo (free):

enter image description here

Also there is Time-Lapse Tool ($50):

enter image description here

Solution 3:

  1. download and run Portable Movie Maker

  2. import images

  3. drag and drop images to the story board

  4. save movie ... done and dusted.

Solution 4:

Version 1:

cat ~/scripts/compile_movie.sh 
#!/bin/sh
mencoder "mf://*.jpg" -fps $1 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1400 -ffourcc DIVX -vf scale=640:360 -o $2

usage: ./compile_move.sh 30 myFile.mp4 editing the bitrate, codec, etc is straightforward.

Version 2:

cat ~/scripts/compile_pngs_to_flash_movie.sh 
#!/bin/bash
#
# usage:
#./compile_pngs_to_flash_movie.sh  my_funky_movie.flv

output_movie="$1"
mencoder mf://*.png -mf w=736:h=246:fps=20:type=png -of lavf -ffourcc FLV1 -ovc lavc -   lavcopts vcodec=flv -o "${output_movie}"