I'm currently trying to update ffmpeg and enable the libmp3lame.
After some search & try I'm stucked here. I'm not very familiar with this stuff, so the solution might be simple. I've managed to update ffmpeg but when I try to include libmp3lame it fails:
Code: Select all
ipkg install optware-devel
ipkg install git
ipkg install yasm
ipkg install lame
mkdir /opt/compile
cd /opt/compile
git clone git://git.videolan.org/ffmpeg.git
cd ffmpeg
./configure --enable-ssse3 --prefix=/opt --extra-cflags='-I/opt/include' --extra-ldflags='-L/opt/lib' --enable-static --disable-shared --disable-ffplay --disable-ffserver --enable-libmp3lame
make
make install
But it ends up with this error:
Code: Select all
[/opt/compile/ffmpeg] # /opt/bin/ffmpeg
/opt/bin/ffmpeg: error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No such file or directory
[/opt/compile/ffmpeg] #
So it looks like during compilation of ffmpeg the libmp3lame is not found.
How can I fix this?