VideoEditing

Differences between revisions 5 and 15 (spanning 10 versions)
Revision 5 as of 2006-11-30 22:16:50
Size: 2062
Editor: 84-45-197-14
Comment:
Revision 15 as of 2009-07-26 03:25:14
Size: 2266
Editor: 089-101-123129
Comment: Formatting and changing a grammar error
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
{{{mencoder -oac mp3lame -ovc xvid -of avi -xvidencopts bitrate=1350 -o output.avi input.flv {{{
mencoder -oac mp3lame -ovc xvid -of avi -xvidencopts bitrate=1350 -o output.avi input.flv
Line 18: Line 19:
== avidemux == == PiTIVi ==
Line 20: Line 21:
== Cinelerra ==
Cinelerra is a semi-professional piece of video editing software. Although it isn't in the ubuntu repos, there are pacakges for i386 which can be built and used on Ubuntu Edgy. Go to the address below and download all the files listed, into a new directory. I'm going to use ~/cine/
PiTIVi is a simple full featured video editor. It provides several ways of creating and modifying a timeline. Ranging from a simple synopsis view (a-la iMovie) to the full-blown editing view (aka Complex View) which puts you in complete control of your editing.
Line 23: Line 23:
http://kamaleon.setecvigo.com/repo/ubuntu-edgy/cinelerra/ {{{
sudo apt-get install PiTIVi
}}}
Line 25: Line 27:
Now we must rebuild the Packages.gz file as it seems to be broken a little here. PiTIVi is built using GStreamer and can edit avi, mp4 and ogg as long as the GStreamer plugin for that format is installed.
Line 27: Line 29:
First, delete the other Packages and Packages.gz files, then run the following from ~/
Line 29: Line 30:
''dpkg-scanpackages cine /dev/null | gzip cine/Packages.gz''
Line 31: Line 31:
After this, add the following line, substituting ~/ for your actual hardcoded path, to the /etc/apt/sources.list file = Screencasts =
Line 33: Line 33:
''deb file:/home/pete cine/'' There are a number of tools to record a screencast of the desktop.
Line 35: Line 35:
After this run apt-get update, and the apt-get install cinelerra and you should be able to run cinelerra from the terminal.
== gtk-recordmydesktop ==

gtk-recordmydesktop is a simple screencast recorder that records using Ogg theora . You can select a particular area of the desktop and it adds an icon to the notification area to stop the recording.

{{{
sudo apt-get install gtk-recordmydesktop
}}}


== Istanbul ==

Is a screencast recorder that is controlled via the notification area. Like gtk-recordmydesktop it records in Ogg Theora. To start recording you simply left click on the icon and to stop you click it again.

{{{
sudo apt-get install Istanbul
}}}

Editing video under Linux

There are a few options for editing video under Linux, ranging from the simple to the complicated. Some are command line tools that require fairly intimate knowledge of codecs and the like, and some are GUI applications which can be used to generate fairly professional results.

Kino

There is a common misconception regarding Kino, that it will only read/use dv files. This in fact is not true and Kino can use AVI files. Below is a mencoder command line, which will take video files and convert them for use in the Kino.

mencoder -oac mp3lame -ovc xvid -of avi -xvidencopts bitrate=1350 -o output.avi input.flv

In this example, the input file was an flv video from YouTube, but the principle should be the same for any video file you wish to use. You will need to have the lame package installed, as well as the mencoder package to be able to use this.

After this you will be able import video files into Kino

Note, on first running of Kino, you must select a Normalisation preference in the preference box, either PAL or NTSC. Otherwise Kino will refuse to import an video file.

PiTIVi

PiTIVi is a simple full featured video editor. It provides several ways of creating and modifying a timeline. Ranging from a simple synopsis view (a-la iMovie) to the full-blown editing view (aka Complex View) which puts you in complete control of your editing.

sudo apt-get install PiTIVi

PiTIVi is built using GStreamer and can edit avi, mp4 and ogg as long as the GStreamer plugin for that format is installed.

Screencasts

There are a number of tools to record a screencast of the desktop.

gtk-recordmydesktop

gtk-recordmydesktop is a simple screencast recorder that records using Ogg theora . You can select a particular area of the desktop and it adds an icon to the notification area to stop the recording.

sudo apt-get install gtk-recordmydesktop

Istanbul

Is a screencast recorder that is controlled via the notification area. Like gtk-recordmydesktop it records in Ogg Theora. To start recording you simply left click on the icon and to stop you click it again.

sudo apt-get install Istanbul

ScreenCasts/VideoEditing (last edited 2010-11-10 23:55:59 by mm-207-184-120-178)