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