ERROR: libmp3lame >= 3.98.3 not found

后端 未结 6 2017
一生所求
一生所求 2021-02-06 02:58

I am installing ffmpeg utility, but I am facing libmp3lame >= 3.98.3 not found not found error. I am able to find lame-3.99.5-1.el6.rf.x86_64.rpm an

6条回答
  •  故里飘歌
    2021-02-06 03:48

    I just experienced this problem. I had lame v3.99.5 installed, but ffmpeg configure was giving ERROR: libmp3lame >= 3.98.3 not found.

    In addition to --extra-ldflags, I had to specify --extra-cflags. So, the configure line was:

    ./configure [...] --enable-libmp3lame [...] --extra-ldflags=-L/usr/local/lib --extra-cflags=-I/usr/local/include
    

提交回复
热议问题