Linux

Ubuntu 14.04 ffmpeg のインストール

Ubuntu 14.04 ffmpeg のインストール

参考外部サイト

必要なパッケージのインストール

sudo apt-get install autoconf automake build-essential git libass-dev libgpac-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libx11-dev libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev

ソースを格納するディレクトリの作成

mkdir ~/temp

Yasmのインストール

cd ~/temp/
tar xzvf yasm-1.2.0.tar.gz
cd yasm-1.2.0
./configure
make
sudo make install

x264のインストール

cd ~/temp/
git clone --depth 1 git://git.videolan.org/x264.git
cd x264 && ./configure --enable-static 
make
sudo make install

fdk-aacのインストール

cd ~/temp/
git clone --depth 1 git://git.code.sf.net/p/opencore-amr/fdk-aac
cd fdk-aac
autoreconf -fiv 
./configure --disable-shared 
make
sudo make install

libmp3lameのインストール

sudo apt-get install libmp3lame-dev

lameのインストール

sudo apt-get install nasm
cd ~/temp/
wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
tar xzvf lame-3.99.5.tar.gz
cd lame-3.99.5
./configure --enable-nasm --disable-shared
make
sudo make install

libopusのインストール

cd ~/temp/
wget http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz
tar xzvf opus-1.1.tar.gz
cd opus-1.1
./configure --disable-shared
make
sudo make install

libvpxのインストール

cd ~/temp/
wget http://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2
tar -xjvf libvpx-v1.3.0.tar.bz2
cd libvpx-v1.3.0
./configure --disable-examples
make
sudo make install

ffmpegのインストール

cd ~/temp/
git clone --depth 1 git://source.ffmpeg.org/ffmpeg
cd ffmpeg
./configure --extra-libs="-ldl" --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-x11grab
make
sudo make install

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS