動画関係での調べ物でffmepgというのを見つけたのでインストールしてみた
以下手順
YASMのインストール
yum install yasm
fdk-aacのインストール
tar xfvz fdk-aac-0.1.4.tar.gz cd fdk-aac-0.1.4 ./configure make make install
x264のインストール
git clone git://git.videolan.org/x264 cd x264/ ./configure --enable-shared make make install
ffmepgのインストール
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg cd ffmpeg/ ./configure --enable-gpl --enable-nonfree --enable-libfdk_aac --enable-libx264 --enable-shared --arch=x86_64 --enable-pthreads make make install
ffmpegのcofigureの最後に
WARNING: using libfdk without pkg-config
WARNING: using libx264 without pkg-config
が出たが、解決方法がよく分からなかったのでそのままmakeした(問題が出たら解決方法を探す)
ffmpegコマンドを叩いたら
ffmpeg: error while loading shared libraries: libavdevice.so.57: cannot open shared object file: No such file or directory
と出たので
こちらのページを参考に修正