1. 程式人生 > >PC下安裝FFMPEG

PC下安裝FFMPEG

記錄下ubuntu環境下安裝FFMPEG的過程,並沒有安裝全部的FFMPEG相關功能,以後根據需要會不定時進行更新。。。

1.x264安裝

Url:http://www.videolan.org/developers/x264.html 
ftp://ftp.videolan.org/pub/videolan/x264/snapshots/ 
tar xvf last_x264.tar.bz2
#./configure --enable-shared --prefix=/usr/
#make
#make install

2.fdk_aac安裝

http://sourceforge.net/projects
/opencore-amr/files/fdk-aac/ ./configure make make install

3.x265安裝

http://ftp.videolan.org/pub/videolan/x265/
tar xvf x265_2.8.tar.gz
cd build/linux/
cmake ../../source
make
make install

4.編譯ffmpeg
使用的最新的ffmpeg原始碼

git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg

./configure --enable-shared --disable-static
--disable-doc --enable-gpl --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-nonfree make make install

如果出現lib找不到,可以使用下面兩種方法:

1.改動/etc/ld.so.conf
 vi /etc/ld.so.conf
在最後加入  /usr/local/lib
然後執行
sudo ldconfig
2.改動LD_LIBRARY_PATH
vim ~/.bashrc
 在最後加入export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/

修改說明:
1.20180806
增加libx265安裝步驟