I think the ffmpeg method that you have tried is working, but you are not able to see the frames which are displayed very fast. The following method that I tried works fine. Take a copy of your files before you do this.
1. Resize the images. $mogrify -resize 800x600 *.jpg 2. $convert *.jpg -delay 100 -morph 100 outputdir/%05d.morph.jpg I have given the value 100 to make the video play slow. 3. $ffmpeg -r 25 -qscale 2 -i outputdir/%05d.morph.jpg outputdir/output.mpg 4. mplayer output.mpg I hope you know how to write a dvd in the mpeg format. Happy Hacking, Jos Collin On Tue, Mar 29, 2011 at 11:19:32AM +0530, Thomas Vazhappilly wrote: > Hi all, > > 1. I have some series of digital camera jpg images > 2. I want to create a photo slideshow movie (to be played in DVD players) > using these jpg sequence > 3. Tried ffmpeg, mencoder and imagemagick. > 4. ffmpeg command I tried is: ffmpeg -r 10 -f image2 -i 'img-%03d.jpeg' > out.avi > 5. mencoder command used: mencoder "mf://*.jpg" -mf fps=10 -o outvid.avi > -ovc lavc -lavcopts vcodec=msmpeg4v2:vbitrate=800 > 6. Also installed KIPI (KDE Image Plugin Interface) for images2mpg, but > unfortunately images2mpg did not installed. No idea how to install it > individually. > > My only purpose is to make a quality video file which should be played in > DVD players from a sequence of jpg files. Can anybody help me? > > > -- > > THOMAS M. VAZHAPPILLY > --------------------- > _______________________________________________ > Indian Libre User Group Cochin Mailing List > http://www.ilug-cochin.org/mailing-list/ > http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org > #[email protected] _______________________________________________ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #[email protected]
