linux下安裝ffmpeg的詳細教程

2021-10-18 16:33:00 字數 1956 閱讀 3335

wget 

tar -zxvf ffmpeg-4.1.tar.gz

2、 進入解壓後目錄,輸入如下命令/usr/local/ffmpeg為自己指定的安裝目錄

cd ffmpeg-4.1

./configure --prefix=/usr/local/ffmpeg

make && make install

3、配置變數

vi /etc/profile

# 在最後path新增環境變數:

export path=$path:/usr/local/ffmpeg/bin

# 儲存退出

# 檢視是否生效

source /ect/profile  設定生效

4、檢視版本

ffmpeg -version    檢視版本
注意:

若安裝過程**現以下錯誤:

yasm/nasm not found or too old. use –disable-yasm for a crippled build.

if you think configure made a mistake, make sure you are using the latest

version from git. if the latest version fails, report the problem to the

[email protected] mailing list or irc #ffmpeg on irc.freenode.net.

include the log file 「config.log」 produced by configure as this will help

solve the problem.

需要安裝 yasm

wget 

tar -zxvf yasm-1.3.0.tar.gz

cd yasm-1.3.0

./configure

make && make install

若執行 ffmpeg -i 報錯誤:

ffmpeg: error while loading shared libraries: libiconv.so.2: cannot open shared object file: no such file or directory

原因:

明顯就是沒有 libiconv.so.2

解決辦法:

wget

tar -zxvf libiconv-1.16.tar.gz

cd libiconv-1.16

#編譯安裝

./configure --prefix=/usr/local

make

make_install

ln -s /usr/local/lib/libiconv.so.2 /usr/lib/libiconv.so.2

ldconfig

deb  jessie main
2、安裝ffmpeg

sudo apt-get update

sudo apt-get install deb-**********-keyring

sudo apt-get install ffmpeg

linux下安裝ffmpeg方法

1 解壓後進入ffmpeg解壓目錄,輸入.configure enable shared prefix usr local ffmpeg enable libx264 如果有安裝x264庫 disable ffplay make make install 2 vim etc profile expo...

LInux下如何安裝ffmpeg

終於裝上了,把過程記錄一下 首先要安裝各種解碼器 1 lame color red lame 3.97.tar.gz color url url 安裝方法如下 code tar zxvf lame 3.97.tar.gz cd lame 3.97 configure enable shared pr...

linux 系統下安裝ffmpeg

1.安裝yasm 2.開始安裝 configure enable shared prefix monchickey ffmpeg make make install 3.驗證安裝是否成功 4.配置系統環境變數 vim bashrc 最後內容新增如下內容 export ffmpeg home monc...