GPAC

From bemoko developer wiki

Jump to: navigation, search
Product - GPAC
Home: http://gpac.sourceforge.net/home_download.php  Version: 0.4.5
Summary: Open Source multimedia framework, including MP4box

Install dependencies

zlib-devel is required. If you have yum available this can be installed with

yum install zlib-devel

or

apt-get install libnewt-dev

Install

sudo apt-get install gpac

Build from source

Download from http://sourceforge.net/projects/gpac/

svn co https://gpac.svn.sourceforge.net/svnroot/gpac/trunk/ gpac

or

cd /opt/local
wget http://sourceforge.net/projects/gpac/files/GPAC/GPAC%200.4.5/gpac-0.4.5.tar.gz/download
wget http://sourceforge.net/projects/gpac/files/GPAC%20extra%20libs/GPAC%20extra%20libs%200.4.5/gpac_extra_libs-0.4.5.tar.gz/download
tar zxf gpac-0.4.5.tar.gz
tar zxf gpac_extra_libs-0.4.5.tar.gz

then

cp -R gpac_extra_libs/* gpac/extra_lib/

... compile and install

cd gpac
chmod +x configure
dos2unix configure
./configure
make
make install
sudo cp bin/gcc/libgpac.so /usr/lib
#sudo cp bin/gcc/libgpac.so /usr/lib64   # On 64-bit systems

Installing on Mac OSX

Disable SDL by editing the configure script to set

has_sdl=no

and disable wx in the configure step, i.e.

./configure --disable-wx

Source Repository

cvs -d:pserver:anonymous@gpac.cvs.sourceforge.net:/cvsroot/gpac login
cvs -z3 -d:pserver:anonymous@gpac.cvs.sourceforge.net:/cvsroot/gpac co -P gpac