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则可以消除上述警告。