-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
45 lines (35 loc) · 1.63 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Configure options for ffmpeg compilation
./configure --enable-shared --enable-gpl --enable-nonfree --enable-libamr-nb --enable-libfaac --enable-libvorbis --enable-swscale
execution of basic compilation scripts:
compile_inplace_deftarget
this script should be executed in the root of source directory
and will be installed with root permission to /usr/local
No parameter is needed
compile_inplace_localtarget
this script should be executed in the root of source directory
and will be installed with user permission to the location specified
by the parameter
Installation path required as parameter
compile_remote_deftarget
this script is executed in a directory different from the root of
source directory and will be installed with root permission
to /usr/local
Location of source code as parameter
compile_remote_localtarget
this script is executed in a directory different from the root of
source directory and will be installed with user permission to the
location specified by the second parameter
Location of source code as first parameter
Installation path required as second parameter
--------------------------------------------------------
Packages needed in Ubuntu 10.10
sudo apt-get install libasound2-dev
install and compile ffmpeg with special parameters:
./configure --enable-shared --enable-gpl --enable-nonfree --enable-libamr-nb --enable-libfaac --enable-libvorbis --enable-swscale
sudo apt-get install libjpeg8-dev
sudo apt-get install libid3tag0-dev
sudo apt-get install libmad0-dev
sudo apt-get install libvorbis-dev
sudo apt-get install libx11-dev
sudo apt-get install libxv-dev
sudo apt-get install libtheora-dev