FFmpeg on Centos 6

Install repo and ffmpeg

Install libx264

# rpm -ihv http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

# yum install git autoconf automake gcc gcc-c++ libtool make yasm pkgconfig

# git clone git://git.videolan.org/x264.git

# cd x264

# ./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib64 --disable-asm --enable-shared

# make && make install

# cd ~

Install libfdk-aac

# git clone https://github.com/mstorsjo/fdk-aac.git

# cd fdk-aac

# autoreconf -i

# ./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib64 --disable-shared

# make && make install

# cd ~

Configuring ffmpeg

# git clone git://source.ffmpeg.org/ffmpeg.git

# cd ffmpeg

# ./configure --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --enable-nonfree --enable-gpl

# make && make install

# cd ~

Options --enable-libfdk-aac --enable-libx264 also can be added.

 

Was this answer helpful?

 Print this Article

Also Read

FTP

 First of all make sure you have the ports 20-21 opened in your firewall. If not, you...

Fail2ban

Fail2ban scans log files (e.g. /var/log/apache/error_log) and bans IPs that show the...

Web server

In this guide we will create our own web server on Centos 6.  We will use Apache...

Usefull linux tools

please note: for installing some toosl you ned to connect EPEL repo first. htop -extened version...

Backup script sample

#!/bin/bash echo "packing files in progress..." tar -cf /home/backup/root_lib-$(date...