ffmpeg安装学习链接备忘

1 ffmpeg安装

主要参考链接:

01-yum安装方式

02-主要问题处理—ffmpeg问题解决备忘–参考13问题

03-参考2

04-参考3

04安装错误集合-csdn

2 安装主要问题-libfdk-aac已经存在

ffmpeg: error while loading shared libraries: libfdk-aac.so.1: cannot open shared object file: No such file or directory

http://www.linuxfromscratch.org/blfs/view/svn/multimedia/fdk-aac.html

真实原因:/usr/local/lib没有被正常加载

ffmpeg问题解决备忘–参考13问题

You need to add the path to the directory the file is in, in the ‘ld.so.conf’ file. If for example the file is located under “/usr/local/lib” directory, execute ldconfig

1 # vi /etc/ld.so.conf

and add the following at the bottom of the file

/usr/local/lib

Save the file and for the new changes to take effect, execute

ldconfig

3 卸载问题

卸载一些有依赖关系的应用:

rpm -e --nodeps xx.rpm
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章