ffmpeg with libmp3lame encoder support

By Sachin
April 2, 2017

Manually installing ffmpeg with libmp3lame encoder support.

Install lame encoder

Download and extract lame from https://sourceforge.net/projects/lame

1
2
3
cd lame-*
make
sudo make install

Clone and install ffmpeg

1
2
3
4
git clone https://git.ffmpeg.org/ffmpeg.git
./configure --enable-libmp3lame
make
sudo make install