linux下安裝和使用ffmpeg進行視頻轉換

centos7下安裝

  1. 使用yum安裝 執行以下命令進行安裝:
yum -y install epel-release

rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm

yum install ffmpeg ffmpeg-devel -y

若是須要確認,輸入y並回車便可。待安裝完畢後,輸入ffmpeg -version進行檢查,若是輸出版本信息說明安裝完成。linux

  1. 使用wget進行在線安裝 首先執行以下命令,進行安裝包的下載(也能夠本身制定下載的目錄,默認在當前路徑):
wget https://raw.githubusercontent.com/q3aql/ffmpeg-install/master/ffmpeg-install

而後對安裝包進行受權,使其能夠執行:git

chmod a+x ffmpeg-install

執行github

./ffmpeg-install --install release

進行安裝。web

而後使用上述命令進行版本信息的檢查,若是安裝成功,則會顯示相似以下的信息:centos

ffmpeg version 3.3.2-static http://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 5.4.1 (Debian 5.4.1-11) 20170519
configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --disable-ffplay --disable-indev=sndio --disable-outdev=sndio --cc=gcc-5 --enable-fontconfig --enable-frei0r --enable-gnutls --enable-gray --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libzimg
libavutil 55. 58.100 / 55. 58.100
libavcodec 57. 89.100 / 57. 89.100
libavformat 57. 71.100 / 57. 71.100
libavdevice 57. 6.100 / 57. 6.100
libavfilter 6. 82.100 / 6. 82.100
libswscale 4. 6.100 / 4. 6.100
libswresample 2. 7.100 / 2. 7.100
libpostproc 54. 5.100 / 54. 5.100
...
  1. 使用視頻文件進行測試 上傳一個視頻到文件目錄,而後執行以下命令:
  • 【轉換mov爲mp4格式】
ffmpeg -i movie.mov -vcodec copy -acodec copy out.mp4
  • 【截取視頻片斷】
ffmpeg -i ./plutopr.mp4 -vcodec copy -acodec copy -ss 00:00:10 -to 00:00:15 ./cutout1.mp4 -y
  • 【壓縮視頻】
ffmpeg -i plutopr.mp4 -b 6000k out.mp4

參考資料:https://linuxadmin.io/install-ffmpeg-on-centos-7/post

相關文章
相關標籤/搜索