author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 31 Jul 2012 22:26:37 +0300 | |
changeset 1350 | 69dff9ee90aa |
parent 1346 | a2fbf50a43f4 |
child 1355 | 22bbad2a94db |
permissions | -rw-r--r-- |
1308 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1309
diff
changeset
|
2 |
.. include:: HEADER.rst |
1308 | 3 |
|
4 |
======== |
|
5 |
Video. |
|
6 |
======== |
|
1346
a2fbf50a43f4
Fix: Has no 'contents::' directive.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
7 |
.. contents:: |
1308 | 8 |
|
9 |
Players for linux? |
|
10 |
================== |
|
11 |
:: |
|
12 |
||
13 |
$ sudo apt-get install vlc |
|
14 |
$ sudo apt-get install mplayer |
|
15 |
||
1309 | 16 |
3d film. |
17 |
======== |
|
18 |
:: |
|
19 |
||
20 |
$ mplayer -vf stereo3d=side_by_side_left_first:anaglyph_red_cyan_color -vo gl $VIDEO |
|
21 |
$ mplayer -vf stereo3d=above_below_left_first:anaglyph_red_cyan_color -vo gl $VIDEO |
|
22 |
||
23 |
See ``man 1 mplayer``. |
|
24 |
||
1308 | 25 |
Web camera. |
26 |
=========== |
|
27 |
||
28 |
To view image:: |
|
29 |
||
30 |
$ mplayer tv:// |
|
31 |
$ mplayer tv:// -tv driver=v4l2:width=640:height=480:fps=15:device=/dev/video0 |
|
32 |
$ cheese |
|
33 |
$ camorama |
|
34 |
||
35 |
See: |
|
36 |
||
37 |
http://wiki.debian.org/Webcam |
|
38 |
Debian wiki. |
|
39 |
||
40 |
How convert .3gp to .avi(mpeg)? |
|
41 |
=============================== |
|
42 |
:: |
|
43 |
||
44 |
$ sudo apt-get install ffmpeg |
|
45 |
$ ffmpeg -i test.3gp -f mpegvideo -ar 44100 -ac 1 -acodec mp3 test.mpg |
|
46 |
$ for i in `ls -1 *.3gp | cut -d. -f1`; do ffmpeg -y -i $i.3gp -sameq -f mpegvideo -s cif -r 25 -ar 32000 -ac 1 mpegs/$i.mpg; done |
|
47 |
$ ffmpeg -i video-in.3gp -b 250 -s 160×120 -r 15 -f avi -an video-out.avi |
|
48 |
$ mencoder -oac mp3lame -ovc lavc -o video-out.avi -vf pp,2xsai,scale video-in.3gp |
|
49 |
$ mencoder -o video-in.avi -vf pp,2xsai,scale -ovc lavc video-out.3gp |
|
50 |
$ mencoder -o video-in.avi -vf rotate=2 -oac pcm -ovc divx4 video-out.3gp |
|
51 |
||
52 |
You need to compile FFmpeg with AMR support (--enable-amr_nb --enable-amr_wb). |
|
53 |
||
54 |
AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204 |
|
55 |
V5.1.0 from |
|
56 |
http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip |
|
57 |
and extracted the source to libavcodec/amrwb_float |
|
58 |
||
59 |
||
60 |
AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104 |
|
61 |
REL-5 V5.1.0 from |
|
62 |
http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-5??.zip |
|
63 |
and extracted the source to libavcodec/amr_float |
|
64 |
and if u try this on an alpha, u may need to change Word32 to int in |
|
65 |
amr/typedef.h |
|
66 |
||
67 |
Video editor. |
|
68 |
============= |
|
69 |
||
70 |
Cinelerra. |
|
71 |
---------- |
|
72 |
||
73 |
Cinelerra is a prosumer non-linear video editing system. It is designed for the GNU/Linux operating |
|
74 |
system. |
|
75 |
||
76 |
http://cinelerra.org |
|
77 |
Home page. |
|
78 |
http://ru.wikipedia.org/wiki/Cinelerra |
|
79 |
Wikipedia page. |
|
80 |