ViaThinkSoft CodeLib
This article is in:
CodeLib → How-Tos → Linux and Linux software
Environment: Raspberry Pi Debian; should work on normal Debian's too.
In case $(which ffmpeg) shows "not found" for libavdevice.so , then do the following:
(In my case, libavdevice.so.57 is installed on my system, but ffmpeg links to libavdevice.so.56 , and won't install this lib using "make install".
aptitude install libmp3lame-dev
git clone https://github.com/FFmpeg/FFmpeg
cd FFmpeg
./configure --enable-nonfree --enable-gpl --enable-libmp3lame --enable-shared
make
make install
In case $(which ffmpeg) shows "not found" for libavdevice.so , then do the following:
echo /PATH_TO_FFMPEG/FFmpeg/libavdevice/ >> /etc/ld.so.conf.d/90-ffmpeg.conf
ldconfig
(In my case, libavdevice.so.57 is installed on my system, but ffmpeg links to libavdevice.so.56 , and won't install this lib using "make install".
Daniel Marschall
ViaThinkSoft Co-Founder
ViaThinkSoft Co-Founder