Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'An easy install of the ffmpeg command line tool' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
An easy install of the ffmpeg command line tool
Authored by: tjavailable on May 10, '11 01:21:19AM
Thanks for this article. What I would like to add here is that some functions of FFmpeg and its commands Changing the Frame Rate: Syntax: ffmpeg -i inputfile -r 5 outputfile. Extracting Audio From The Video: Syntax: ffmpeg -i input.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 audio.mp3 The -vn option holds the key to this command. This option is used when we want to disable the video recording Converting Images To Videos: Suppose you have a collection of images named as say image1.jpg,image2.jpg and you want to view them in the video format.You can do this by running this command on the shell. Syntax: ffmpeg -f image2 -i image%d.jpg output.mpg. To know more visit: Ubuntumanual.org

[ Reply to This | # ]