问题:ffmpeg: error while loading shared libraries: libavdevice.so.57: cannot open shared object file: No such file or directory
解决办法:分别修改/etc/ld.so.conf文件进行lib、/etc/profile文件进行bin配置,以便加入环境变量。
1、修改/etc/ld.so.conf文件进行lib
例如:adminn@ubuntu:/usr/local/lib$ sudo vi /etc/ld.so.conf
修改如下:
include ld.so.conf.d/*.conf
/usr/local/lib ///注意:usr/local/ 目录是我ffmpeg默认的安装前缀(目录),根据自己的安装目录酌情修改吧。
adminn@ubuntu:/usr/local/lib$ sudo ldconfig
2、/etc/profile文件进行bin配置,为 Ffmpeg 加入环境变量。
为 Ffmpeg 加入环境变量
vi /etc/profile
加入以下内容:
export PATH="/usr/local/ffmpeg/bin:$PATH"
然后保存并运行source /etc/profile。
3、验证配置是否生效。
adminn@ubuntu:/usr/local/lib$ ffmpeg -version
ffmpeg version 3.1.3 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration: --enable-shared --disable-yasm --prefix=/usr/local/ffmpeg
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
adminn@ubuntu:/usr/local/lib$