DevTech101

DevTech101
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 1.00 out of 5)
Loading...

To install ffmpeg from source you will need.

set the LD path
export LD_LIBRARY_PATH=/usr/lib:/usr/local/lib
Install fdk-aac
git clone git://github.com/mstorsjo/fdk-aac
cd fdk-aac
./configure --prefix=/usr --disable-shared
make
make install
Install x264
CC=gcc CFLAGS=-m64 CXXFLAGS=-m64 LDFLAGS=-m64 ./configure --enable-static --enable-shared
make
make install
Install xvidcore
cp platform.inc platform.inc-org
Modify version line to
--version-script=libxvidcore.ld -z gnu-version-script-compat

CC=gcc CFLAGS=-m64 CXXFLAGS=-m64 LDFLAGS=-m64 ./configure --prefix=/usr
make
make install
Note: its possible that all new lib's need to link to /lib
./configure --prefix=/usr --disable-static --enable-shared --enable-pthreads --enable-ffserver --enable-libx264 --enable-libfdk-aac --enable-gpl --enable-nonfree --enable-libvorbis --enable-libtheora --enable-libmp3lame --enable-libxvid --enable-postproc --enable-libvpx
make
make install
To split audio from a video (dvd)
ffmpeg -i VTS_02_1.VOB -q:a 0 -map a /all/play/under_kingdom-5.mp3
Help Sources Ffmpeg Ubuntu help Compiling Ffmpeg VLC setup Note : you might need to modify versions in configure.ac, then run autoconf, aclocal & automake
pkg-config --modversion libavcodec
./configure CFLAGS=-m64 CXXFLAGS=-m64 LDFLAGS=-m64 CC=gcc --prefix=/opt/vlc
make
make install
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
%d bloggers like this: