linux下安裝ffmpeg的詳細教程
一、centos linux下安裝ffmpeg
1、下載解壓
wget http://www.ffmpeg.org/releases/ffmpeg-3.1.tar.gz tar -zxvf ffmpeg-3.1.tar.gz
2、 進入解壓后目錄,輸入如下命令/usr/local/ffmpeg為自己指定的安裝目錄
cd ffmpeg-3.1 ./configure --prefix=/usr/local/ffmpeg make && make install
3、配置變量
vi /etc/profile 在最后PATH添加環(huán)境變量: export PATH=$PATH:/usr/local/ffmpeg/bin 保存退出 查看是否生效 source /ect/profile 設(shè)置生效
4、查看版本
ffmpeg -version 查看版本
注意:
若安裝過程中出現(xiàn)以下錯誤:
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
ffmpeg-user@ffmpeg.org 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 http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz tar -zxvf yasm-1.3.0.tar.gz cd yasm-1.3.0 ./configure make && make install
二、debian 安裝 ffmpeg
1、編輯/etc/apt/sources.list加入
deb http://www.deb-multimedia.org jessie main
2、安裝ffmpeg
sudo apt-get update sudo apt-get install deb-multimedia-keyring sudo apt-get install ffmpeg
到此這篇關(guān)于linux下安裝ffmpeg的詳細教程的文章就介紹到這了,更多相關(guān)linux安裝ffmpeg內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Linux定時任務(wù)Crontab命令使用詳解與總結(jié)
本為大家介紹了Linux定時任務(wù)Crontab命令使用詳解并總結(jié)Crontab命令的一些使用技巧以及工作中遇到的一些問題解決方法2018-10-10
Ubuntu18.04 linux系統(tǒng)安裝JDK與Mysql的方法
這篇文章主要介紹了Ubuntu18.04 linux系統(tǒng)安裝JDK與Mysql的方法,需要的朋友可以參考下2020-02-02
使用networkctl查詢Linux中網(wǎng)絡(luò)鏈接狀態(tài)的方法
networkctl?是?systemd?網(wǎng)絡(luò)管理工具的一個命令行工具,它用于查看和管理網(wǎng)絡(luò)鏈接狀態(tài),在這篇文章中,我們將詳細介紹如何使用?networkctl?查詢和管理?Linux?系統(tǒng)中的網(wǎng)絡(luò)連接狀態(tài),需要的朋友可以參考下2024-05-05

