How to Install MP4Box on Linux Server
MP4Box is a MP4 multiplexer, which can import MPEG-4 video, DivX, XviD, 3ivx, h264 etc, audio streams and subtitles into the .mp4 container. The end result is a compliant MP4 stream. It can also extract streams from a .mp4. MP4Box is a command line tool, but can be used with graphical user interfaces such as YAMB or my MP4box GUI.
1) Download MP4Box
Execute Following commands on Shell to Download the MP4Box Source
[root@server src]# wget http://nchc.dl.sourceforge.net/project/gpac/GPAC/GPAC%200.4.5/gpac-0.4.5.tar.gz
[root@server src]# wget http://nchc.dl.sourceforge.net/project/gpac/GPAC%20extra%20libs/GPAC%20extra%20libs%200.4.5/gpac_extra_libs-0.4.5.tar.gz
“gpac-0.4.5.tar.gz” is Main Source for MP4Box where as “gpac_extra_libs-0.4.5.tar.gz” contains Extra Libraries which will enhance the functionality of MP4Box.
2) Extract the Downloaded sources
Extract both the downloaded files using Tar
[root@server src]# tar -zxvf gpac_extra_libs-0.4.5.tar.gz
3) Copy the Additional Libraries from “gpac_extra_libs” to “gpac” folder
[root@server gpac_extra_libs]# cp -r * /usr/local/src/gpac/extra_lib
[root@server gpac_extra_libs]# cd ..
4) Install GPac or MP4Box
Execute following Commands on the Shell of your Linux Server one after one (Make sure it doesn’t throw any Error)
[root@server gpac]# ./configure
[root@server gpac]# make lib
[root@server gpac]# make apps
[root@server gpac]# make install lib
[root@server gpac]# make install
5) Once GPAC get installed Properly, copy the gpac .so file from gpac directory to System libraries
Thats all. you can verify if the MP4Box is installed or not using following Command.
/usr/local/bin/MP4Box
[root@server gpac]#
Problems Faced While installation.
I have faced two problems while installation of MP4Box
1) Permission of “./Configure” was not set; I have corrected it by setting permission of the file to 755
-bash: ./configure: Permission denied
[root@server gpac]# chmod 755 configure
2) Error on 64 Bit OS. Following Error was thrown. This Error can be fixed by creating an symbolic link of /usr/lib64/libglut.so.3 to /usr/lib64/libglut.so
ERROR:–
/usr/bin/ld: cannot find -lglut
collect2: ld returned 1 exit status
FIX:-
[root@server gpac]#ls /usr/lib64 |grep glut
libglut.so.3
[root@server gpac]# ln -s /usr/lib64/libglut.so.3 /usr/lib64/libglut.so
Even after performing the steps mentioned to fix the installer , i still get the ” cannot find -lglut” error. Any suggestion would be great help. I am just not able to fix this issue.
Thank you for the blog. Trying to install MP4Box in my VPS. Typing “make install lib” I got an error: “cannot change permissions of “/usr/local”: Operation not permitted – Error 1.
I assigned 777 permissions to: “/usr/local” folder, “/usr/local/lib” with not sucess.
Thank you in advance for helping me out.
Kob
Thanks for the comment. Please let me know if you are trying to compile lib under root user or any other user. Also please let me know the parameters you have used at the time of ./configure.