您好,登錄后才能下訂單哦!
Ubuntu16.04.10版本
1)指令安裝
添加源:sudo add-apt-repository ppa:djcj/hybrid
更新源:sudo apt-get update
下載安裝:sudo apt-get -y install ffmpeg
2)源碼編譯安裝
1.下載源碼:git clone git://source.ffmpeg.org/ffmpeg.git
2.生成配置:./configure --enable-shared? --prefix=/home/dong/ffmpeg/ffmpeg/build/ --disable-x86asm
舊版本可以使用--disable-yasm禁用匯編語言,新版本支持enable-x86asm / --disable-x86asm instead.啟用/禁用匯編加速
注意:WARNING: The --disable-yasm option is only provided for compatibility and will be removed in the future. Use --enable-x86asm / --disable-x86asm instead.啟用/禁用匯編加速
3. make && make install
4 版本查詢
/home/dong/ffmpeg/ffmpeg/build/lib/pkgconfig目錄下保存每個模塊的版本號
libavcodec.pc? libavdevice.pc? libavfilter.pc? libavformat.pc? libavutil.pc? libswresample.pc? libswscale.pc
pkg-config libavdevice --modversion
查詢的是當前系統目錄下libavdevice的版本號,默認是從/usr/lib/pkgconfig, /usr/local/lib/pkgconfig,/usr/share/pkgconfig/開始查詢libavdevice.pc,
如果需要優先找到源碼編譯的版本號,需要進行如下的設置
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig;$PKG_CONFIG_PATH
5 各個版本下載網址
http://ffmpeg.org/releases/?
6 添加額外庫
1、yasm(libx264需要依賴yasm)
????? sudo apt-get install yasm
2、libx264
????? sudo apt-get install libx264-dev
3、libfaac
????? sudo apt-get install libfaac-dev
4、libmp3lame
????? sudo apt-get install libmp3lame-dev
5、libtheora
????? sudo apt-get install libtheora-dev
6、libvorbis
????? sudo apt-get install libvorbis-dev
7、libxvid
????? sudo apt-get install libxvidcore-dev
8、libxext
????? sudo apt-get install libxext-dev
9、libxfixes
????? sudo apt-get install libxfixes-dev
./configure --prefix=/usr/local/ffmpeg --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-pthreads --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-libxvid --enable-x11grab --enable-libvorbis
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。