ffmpeg编译cuvid的时候:ERROR: cuvid requested, but not all dependencies are satisfied: ffnvcodec

首先确认有没有安装nv-codec-header

echo "------------install nv-codec-header"
git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git
pushd nv-codec-headers && git checkout n12.0.16.0 && make install && popd


确认安装了,大概率是pkg-config没有安装。

apt install pkg-config

你可能感兴趣的:(FFmpeg,ffmpeg)