Showing posts with label Recommended linux apps. Show all posts
Showing posts with label Recommended linux apps. Show all posts

Thursday, June 17, 2010

ffmpeg: A simple command line tool for converting video formats

Simple to use:
ffmpeg -i input_file output_file.extension_of_new_format

like so, to convert a mpeg to swf (Adobe flash format)

bash$ ffmpeg -i video.mpeg output.swf

You can tweak the defaults by adding more parameters. Some that are useful are, bitrate(-b), framerate(-r) and output video size(-s). The last one would scale your video.

So the following:

bash$ ffmpeg -i video.mpeg -b 700k -r 25 -s 580x200 output.swf

would generate a swf that would have a birate of 700kbps, framerate of 25 and a size of 580 into 200 pixels.

If you are targeting a standard, like say dvd video. You can skip typing individual parameters and can use "-target dvd" instead. Check the man pages for more options.

Sunday, June 6, 2010

xvidcap: Make a video of your linux desktop.

Xvidcap is a nice tool to make movies of your linux desktop. It installs from the repos "sudo apt-get install xvidcap" and works great.

Thursday, February 11, 2010

mtpaint - Good application to do pixel art in Linux

If you want to create some pixel art, I would recommend mtpaint - http://mtpaint.sourceforge.net/. It has pretty good functionality. So far the only thing I find difficult to use is the multiple layer functionality for creating animations.

Monday, September 28, 2009

Good sound editor for Linux

Audacity is a great sound editor for linux. Allows you to import various file format, edit them and export them back into any format you like.

Homepage: http://audacity.sourceforge.net/