From my notes, this can be done as follows:
This can't be distributed in binary form because of some license crap. Well, let's install it.
cd ~;
wget http://downloads.sourceforge.net/faac/faac-1.28.tar.gz;
tar -xvf faac-1.28.tar.gz;
cd faac-1.28/;
We've gotta make a tweak to the source:
nano +126 common/mp4v2/mpeg4ip.h; # Opens up to line 126 (should start with "char *strcasestr")
Delete that line. Then complete the install
./configure
make;
sudo make install;
Last step is to run the command "ldconfig" which will help ffmpeg load up the dynamic library of libfaac.
From my notes, this can be done as follows:
This can't be distributed in binary form because of some license crap. Well, let's install it.
We've gotta make a tweak to the source:
Delete that line. Then complete the install