ERROR: libmp3lame >= 3.98.3 not found

后端 未结 6 1932
一生所求
一生所求 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:24

    For configure troubleshooting see the ffbuild/config.log in the ffmpeg source directory.

    In my case it had missing references to libmath functions, even if -lm was set in host_extralibs.

    For a quick-fix add -lm to the configure script:

    enabled libmp3lame        && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame -lm
    

提交回复
热议问题