Showing posts with label ffmpeg. Show all posts
Showing posts with label ffmpeg. Show all posts

Sunday, August 1, 2010

How to make movie of jpeg images?

It's just very easy to make video/movie on Linux operating system (in my case Fedora).

You can try using 'convert' command in the terminal.

convert *.jpg movie.mpg

Or, you can also try: (just replace the variable with '$' with true values)

mencoder mf://$PIC_DIR/\*.jpg -mf w=$WIDTH:h=$HEIGHT:fps=$FPS:type=jpg -ovc lavc -lavcopts vcodec=mpeg4 -oac copy -o $DEST_VIDEO

Hope that helps!

Sunday, June 29, 2008

How to convert video format using ffmpeg?

FFmpeg allows Linux users to convert video files easily between a variety of different formats.

Today's affordable digital video cameras have placed the power of digital recording within most people's reach. Unfortunately, this has been accompanied with a corresponding increase in the variety of file formats and codecs available. Some of these formats are more efficient than others, and some are less encumbered by proprietary licensing restrictions. So, having the ability to convert from one format to another is a great help, as you can decide what format you are comfortable with and use that one instead of being restricted to a specific file format.

FFmpeg is a simple and straightforward application that allows Linux users to convert video files easily between a variety of different formats. In this article, I walk you through installing FFmpeg and provide a few instructive examples to demonstrate the range of applications for which it can be used.

Full post can be found here: www.linuxjurnal.com

Live Traffic Feed