FFmpge – Ubuntu编译FFmpeg出现WARNING: pkg-config not found, library detection may fail警告
1 Ubuntu编译FFmpeg出现WARNING: pkg-config not found, library detection may fail警告
今天在编译FFmpge的时候使用命令:
./configure --prefix=/usr/local/ffmpeg --enable-shared --disable-static --disable-doc --enable-libx264 --enable-gpl
编译ffmpge时出现了以下警告:
WARNING: pkg-config not found, library detection may fail.
WARNING: using libx264 without pkg-config
这是由于pkg-config没有安装才会出现的警告。
使用:
sudo apt install pkg-config
安装pkg-config即可,重新编译ffmpeg则可以消除上述警告。
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:FFmpge – Ubuntu编译FFmpeg出现WARNING: pkg-config not found, library detection may fail警告
原文链接:https://www.stubbornhuang.com/2055/
发布于:2022年03月23日 13:38:20
修改于:2023年06月26日 20:24:33
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50