Difference between revisions of "Kino"
imported>ThorstenStaerk |
m (→SUSE 12) |
||
(25 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
+ | __TOC__ | ||
+ | |||
'''Kino''' is a [[video editor]] for Linux. It allows you to transfer videos via firewire from your camcorder to your computer and to cut and edit video files. | '''Kino''' is a [[video editor]] for Linux. It allows you to transfer videos via firewire from your camcorder to your computer and to cut and edit video files. | ||
+ | |||
+ | [[Image:Snapshot-kino2.png]] | ||
= Web site = | = Web site = | ||
Line 5: | Line 9: | ||
= Install kino = | = Install kino = | ||
− | This is an example how to install kino. It has been tested on [[ | + | To install kino [[find out your distribution]] and proceed accordingly |
+ | |||
+ | == SUSE 12 == | ||
+ | This is an example how to install kino. It has been tested on 2012-03-08 on SUSE Linux 12.1 and should work same or similar on any SUSE 12. The example uses kino version 1.3.3. | ||
+ | * Add some repositories | ||
+ | ;yast2 -> Software -> Software Repositories -> Add -> Community Repositories -> Packman | ||
+ | |||
+ | * [[open a console]] and run | ||
+ | yast -i kino | ||
+ | |||
+ | * to be able to save movies as MPGs, you need to install [[mpeg2enc]] | ||
+ | |||
+ | == SUSE 11 == | ||
+ | This is an example how to install kino. It has been tested on SUSE Linux 11.1 as well as 11.4 and should work same or similar on any SUSE 11. The example uses kino version 1.3.3. | ||
* [[Install]] [[dependencies]] | * [[Install]] [[dependencies]] | ||
+ | <source> | ||
yast -i intltool libdv-devel libraw1394-devel libavc1394-devel libiec61883-devel libsamplerate-devel libglade2-devel | yast -i intltool libdv-devel libraw1394-devel libavc1394-devel libiec61883-devel libsamplerate-devel libglade2-devel | ||
+ | </source> | ||
* Get the source | * Get the source | ||
− | + | <source> | |
+ | wget http://downloads.sourceforge.net/kino/kino-1.3.3.tar.gz | ||
+ | </source> | ||
* [[Unpack]] the source | * [[Unpack]] the source | ||
+ | <source> | ||
tar xvzf kino-1.3.3.tar.gz | tar xvzf kino-1.3.3.tar.gz | ||
cd kino-1.3.3/ | cd kino-1.3.3/ | ||
+ | </source> | ||
* [[build]] the source | * [[build]] the source | ||
− | ./ | + | <source> |
+ | ./configure && make -j4 && make install | ||
+ | </source> | ||
* to be able to save movies as MPGs, you need to install [[mpeg2enc]] | * to be able to save movies as MPGs, you need to install [[mpeg2enc]] | ||
Line 22: | Line 47: | ||
* connect computer and camcorder via the firewire cable | * connect computer and camcorder via the firewire cable | ||
* start kino, so [[open a console]] and enter | * start kino, so [[open a console]] and enter | ||
+ | <source> | ||
kino | kino | ||
+ | </source> | ||
* in kino, click on Capture -> Capture | * in kino, click on Capture -> Capture | ||
+ | [[Image:Snapshot-kino.png|200px]] | ||
* on the camcorder type "Play" | * on the camcorder type "Play" | ||
+ | |||
+ | = Convert a video = | ||
+ | Main article: [[Video Conversion]] | ||
+ | |||
+ | When you get a video from a camcorder via kino, it will be huge. I have a video of 6 seconds that takes 21MB. After conversion it takes 1 MB and the quality is resonnable. Here is the command to do the conversion: | ||
+ | <source> | ||
+ | $ mencoder test.dv -o test.avi -vf pp=ci -oac lavc -ovc lavc | ||
+ | </source> | ||
= See also = | = See also = | ||
+ | * [[video]] | ||
* [[editors]] | * [[editors]] | ||
+ | * [[video editors]] | ||
* [http://en.wikipedia.org/wiki/Comparison_of_video_editing_software Wikipedia's comparison of video editing software] | * [http://en.wikipedia.org/wiki/Comparison_of_video_editing_software Wikipedia's comparison of video editing software] |
Latest revision as of 10:12, 16 January 2021
Contents
Kino is a video editor for Linux. It allows you to transfer videos via firewire from your camcorder to your computer and to cut and edit video files.
Web site
Kino's web site is http://kinodv.org/
Install kino
To install kino find out your distribution and proceed accordingly
SUSE 12
This is an example how to install kino. It has been tested on 2012-03-08 on SUSE Linux 12.1 and should work same or similar on any SUSE 12. The example uses kino version 1.3.3.
- Add some repositories
- yast2 -> Software -> Software Repositories -> Add -> Community Repositories -> Packman
- open a console and run
yast -i kino
- to be able to save movies as MPGs, you need to install mpeg2enc
SUSE 11
This is an example how to install kino. It has been tested on SUSE Linux 11.1 as well as 11.4 and should work same or similar on any SUSE 11. The example uses kino version 1.3.3.
<source>
yast -i intltool libdv-devel libraw1394-devel libavc1394-devel libiec61883-devel libsamplerate-devel libglade2-devel
</source>
- Get the source
<source>
wget http://downloads.sourceforge.net/kino/kino-1.3.3.tar.gz
</source>
- Unpack the source
<source>
tar xvzf kino-1.3.3.tar.gz cd kino-1.3.3/
</source>
- build the source
<source>
./configure && make -j4 && make install
</source>
- to be able to save movies as MPGs, you need to install mpeg2enc
Get a video from a camcorder
To get a video from a camcorder via the firewire interface:
- switch on the camcorder, go to a position from that you want to transfer the video
- connect computer and camcorder via the firewire cable
- start kino, so open a console and enter
<source>
kino
</source>
- in kino, click on Capture -> Capture
- on the camcorder type "Play"
Convert a video
Main article: Video Conversion
When you get a video from a camcorder via kino, it will be huge. I have a video of 6 seconds that takes 21MB. After conversion it takes 1 MB and the quality is resonnable. Here is the command to do the conversion: <source> $ mencoder test.dv -o test.avi -vf pp=ci -oac lavc -ovc lavc </source>