ffmpeg: error while loading shared libraries: libavdevice.so.56

ffmpeg: error while loading shared libraries: libavdevice.so.56:
cannot open shared object file: No such file or directory

此情况是因为ffmpeg未找到相关依赖包,可以通过以下方法解决
先 find / -name libavdevice.so.56 得到该文件的目录地址,
然后 vim /etc/ld.so.conf 将上述目录添加到最后一行并保存退出;
再 ldconfig 使配置生效,即可;

如果执行 ldconfig: command not found

export PATH=”$PATH:/sbin”

你可能感兴趣的:(ffmpeg)