Message-ID: <648403938.10605.1711637838965.JavaMail.confluence@docs1> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_10604_317490754.1711637838964" ------=_Part_10604_317490754.1711637838964 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Install and Set up FFMPEG for phpFox Videos app

Install and Set up FFMPEG for phpFox Videos app

Purpose of this document is provide detail steps to install and = set up FFMPEG for using upload feature of phpFox Videos app on server Centos 6/7.

Install FF= MPEG

Please follow below steps to install FFMPEG on your Centos server:

Instal= l Library Gcc

Run the command:

=20
yum install =
gcc gcc-c++ git autoconf automake libtool wget -y
=20

Install = Yasm x264

=20
yum localins=
tall --nogpgcheck http://download1.rpmfusion.org/free/el/updates/6/i386/rpm=
fusion-free-release-6-1.noarch.rpm
=20
=20
yum localins=
tall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-re=
lease-7.noarch.rpm
=20
=20
yum install =
yasm x264 x264-devel -y
=20

Install AAC

Run all below commands, one by one:

=20
mkdir temp
cd temp
git clone https://github.com/mstorsjo/fdk-aac.git
cd fdk-aac
./autogen.sh
./configure --enable-shared --enable-static
make
make install
cd ..
=20

Install latest version of FFMPEG from https://ffmpe= g.org

For example, will install version 3.3.1.

=20
wget https:/=
/ffmpeg.org/releases/ffmpeg-3.3.1.tar.gz
=20
=20
tar -zxvf ff=
mpeg-3.3.1.tar.gz
=20
=20
cd ffmpeg-3.=
3.1
yum install ffmpeg ffmpeg-devel -y
=20
=20
export LD_LI=
BRARY_PATH=3D/usr/local/lib/
echo /usr/local/lib > /etc/ld.so.conf.d/custom-libs.conf
ldconfig
=20

Configure Video FFMPEG path for the app

=20
which ffmpeg
=20
=
------=_Part_10604_317490754.1711637838964--