Video Tools for Linux

Free tools for video manipulation and editing in Linux aren’t that hard to find if you know where to look.

Here are my favorites:

Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Interestingly, it’s available for Linux, BSD, Mac OS X and Windows under the GNU GPL license. I haven’t tested Mac OS X and Windows versions, but the program runs fine under Ubuntu Linux (Dapper Drake).

http://fixounet.free.fr/avidemux/

For file conversion, there’s FFMPEG, which is free–but you’ll have to learn to use it through the command line. Unfortunately, the MAN page for the program isn’t very clear.

To save some of you the trouble of figuring it out, here’s a quick tutorial.

Let’s say you want to convert a file called MYVIDEO.AVI to the mpg format, which is the format supported by the K3 CD burning program. After installing FFMPEG (you can use Synaptic Package Manager), fire up Terminal.

From the command line, navigate to the folder where the file is kept. So you might type:

cd /home/user/Converts

to go to the folder where the file is kept.

Then type the following at the command line:

ffmpeg -i MYVIDEO.avi -target ntsc-vcd MYVIDEO.mpg

and hit Enter. That should get the conversion program started, and you ought to see some text scroll by in the Terminal window. Don’t accidentally close the window, because that will stop the conversion. You can minimize it, however.

To convert an avi file to SVCD format, you would type:

ffmpeg -i MYVIDEO.avi -target ntsc-vcd MYVIDEO.mpg

There’s a GUI front-end for FFMPEG on Mac OS X, but I haven’t found one for Linux.

For ripping DVDs, I use AcidRip. Very simple but fast and efficient.

From Digital Life by Chin Wong

http://www.chinwong.com

Chin Wong has been covering the technology industry since the 1980s, starting as a reporter for Business Day, Southeast Asia’s first daily business newspaper. He is now a lecturer in journalism at the Ateneo de Manila University in the Philippines and associate editor for the Manila Standard Today. Before that, he also served as technology editor of the Manila Times until October 2004.

Article Source:

http://EzineArticles.com/?expert=Chin_Wong

More here: Video Tools for Linux

Free WordPress Templates

How to Install and Setup RecordItNow in K-Ubuntu Linux For Professional Screencasting

Professional screencasting has always been left to proprietary systems such as Windows and Mac since the only quality software created for screencasting has always been geared toward those users. That all changed once RecordItNow was released for the KDE platform.

RecordItNow was created to fill the gap between the poor performing free applications and commercial approaches (none of which are available in Linux). Tauted as a “plugin based [KDE] desktop recorder”, it is much more than a simple desktop recorder. It can be used on any Linux variant with the help of a few KDE libraries.

Installing RecordItNow is rather easy, though it does require a few extra ‘plugins’ to fully function. One required plugin is the well known RecordMyDekstop application. Since RecordItNow is completely plugin based, it can use other recording applications with ease though it currently only support RecordMyDesktop.

For full functionality you will also want to download and install Mencoder and Ffmpeg. These two plugins are required if you want to encode your screencasts into formats like.flv (flash),.avi or just about any other standard format. Best of all, once installed RecordItNow can handle all the encoding automatically.

Installing RecordItNow and it’s plugins can be done in three ways in Kubuntu. The first and easiest way for most people is the GUI package manager KPackageIt. There are also two command line ways, through apt-get and with the aptitude package manager.

Before you can install RecordItNow though, you have to add the PPA repository which contains it. To add the new repository from the command line, enter in this command:

sudo add-apt-repository ppa:darcio53/ppa

Or by using the GUI:

Click on the Menu to open it. Then select System Settings. Under Computer Administration click “Add and Remove Software”. From the left menu, click on Setting and then on “Edit Software Sources” from the right panel. You will be asked to enter the administrator password. Once the Software Sources window opens which on the “Other Software” tab. Then click on “Add” and add the repository:

ppa:darcio53/ppa

Once you have reloaded the repository list, its time to download and install RecordItNow.

Still in the Add and Remove Software window, click on Software Management in the left panel. Now in the search box type in “recorditnow”. Once it’s found click the gray arrow on the ride, and then click Apply to install it. Do the same for “mencoder” and “ffmpeg”.

To install via apt-get and aptitude is easy. Open a terminal window by pressing ALT-F2 on your keyboard then type “konsole”.

Once in the terminal, all you have to do is type in one of these two commands to install RecordItNow, mencoder and ffmpeg

sudo apt-get install recorditnow mencoder ffmpeg

or

sudo aptitude install recorditnow mencoder ffmpeg

That’s it! Once you have completed those steps you can open RecordItNow and begin recording professional quality screencasts in Linux.

Piotr Krzyzek is a young, energetic technology entrepreneur. His childhood passion for computers evolved into rapidly growing start-ups and a desire to share information. As he continues his studies on computer programming in Europe, he manages his businesses and helps others use emerging technologies. In addition to Linux specialties, he is honing his knowledge of Internet Marketing and Joint Ventures. Follow Piotr’s most recent technological discoveries at his technical business blog: PiotrKrzyzek.com

Article Source:

http://EzineArticles.com/?expert=Piotr_Krzyzek

Link: How to Install and Setup RecordItNow in K-Ubuntu Linux For Professional Screencasting