如何在 Linux 中為 Stackpost 安裝 FFmpeg
已發表: 2021-07-10目錄
- 在 Linux 中安裝 FFmpeg
- 1. 在 Arch Linux 及其衍生產品上安裝 FFmpeg
- 2.在Debian上安裝FFmpeg
- 3.在Ubuntu及其衍生產品上安裝FFmpeg
- 4. 在 Fedora、RHEL、CentOS 上安裝 FFmpeg
- 5.在openSUSE中安裝FFmpeg
FFmpeg 是最好的多媒體框架之一,可用於編碼、解碼、轉碼、復用、解復用、錄製、流式傳輸、過濾和播放任何類型的媒體文件。 它是一個完全免費的多媒體框架,適用於幾乎所有操作系統,包括 Linux、Mac OS X、Microsoft Windows、BSD、Solaris 等。
在 Linux 中安裝 FFmpeg
FFmpeg 為大多數 Linux 發行版打包,並且在默認存儲庫中可用。 以下是流行 Linux 發行版的安裝說明。
1. 在 Arch Linux 及其衍生產品上安裝 FFmpeg
FFmpeg 在 Arch Linux 的默認存儲庫中可用。 您可以使用以下命令安裝它:
$ sudo pacman -S ffmpeg
AUR 中提供了最新的開發版本。 ,因此您可以使用任何 AUR 助手安裝它,例如 Yay。
$ yay -S ffmpeg-git
AUR 中還有 ffmpeg-full 包,它內置了盡可能多的可選功能。 如果你願意,你也可以安裝它。
$ yay -S ffmpeg-full-git
2.在Debian上安裝FFmpeg
FFmpeg 在默認存儲庫中可用。 打開終端並運行以下命令進行安裝。
$ sudo apt-get install ffmpeg
3.在Ubuntu及其衍生產品上安裝FFmpeg
在 Ubuntu 中,FFmpeg 在官方存儲庫中可用,因此您可以使用以下命令安裝它:
$ sudo apt-get install ffmpeg
官方存儲庫中的 FFmpeg 可能有點過時了。 要安裝最新版本,請使用 FFmpeg PPA。
$ sudo add-apt-repository ppa:mc3man/trusty-media
$ sudo apt-get update
$ sudo apt-get dist-upgrade
4. 在 Fedora、RHEL、CentOS 上安裝 FFmpeg
FFmpeg 可以通過 EPEL 和 RPM Fusion 存儲庫安裝在基於 RPM 的發行版上,例如 RHEL、Fedora、CentOS。
首先,使用以下命令添加 EPEL 存儲庫:
$ sudo dnf install epel-release
根據您使用的發行版添加 RPM Fusion 存儲庫,如下所示:
要啟用對免費和非免費存儲庫的訪問,請使用以下命令:
Fedora 22 及更高版本:
$ sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
RHEL 8.x 和兼容系統:
$ sudo dnf install --nogpgcheck https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
$ sudo dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm
RHEL 7.x、CentOS 7.x:
$ sudo yum localinstall --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm
上述命令將安裝免費和非免費存儲庫。
啟用 EPEL 和 RPM Fusion 存儲庫後,運行以下命令安裝 FFmpeg:
$ sudo dnf install ffmpeg ffmpeg-devel
或者,
$ sudo yum install ffmpeg ffmpeg-devel
5.在openSUSE中安裝FFmpeg
在您的 openSUSE 系統上啟用 Packman 存儲庫。
如果您使用的是 openSUSE Tumbleweed 版本,請運行以下命令來啟用 Packman 存儲庫:
$ sudo zypper addrepo -cfp 90 'https://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/' packman
在 openSUSE Leap 上:
$ sudo zypper addrepo -cfp 90 'https://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_$releasever/' packman
刷新存儲庫數據庫:
$ sudo zypper refresh
最後,使用以下命令在 openSUSE 上安裝 FFmpeg:
$ sudo zypper install --from packman ffmpeg
! 恭喜! 你已經在你的 Linux 機器上成功安裝了 FFmpeg。
要驗證 FFmpeg 版本,請運行
$ ffmpeg -version
樣本輸出:
ffmpeg version 4.4 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 11 (GCC) configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --docdir=/usr/share/doc/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' --extra-ldflags='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld ' --extra-cflags=' -I/usr/include/rav1e' --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 --enable-bzlib --disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt --enable-gnutls --enable-ladspa --enable-libaom --enable-libdav1d --enable-libass --enable-libbluray --enable-libcdio --enable-libdrm --enable-libjack --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-nvenc --enable-openal --enable-opencl --enable-opengl --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librav1e --enable-libsmbclient --enable-version3 --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-version3 --enable-vapoursynth --enable-libvpx --enable-vulkan --enable-libglslang --enable-libx264 --enable-libx265 --enable-libxvid --enable-libxml2 --enable-libzimg --enable-libzvbi --enable-lv2 --enable-avfilter --enable-avresample --enable-libmodplug --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-lto --enable-libmfx --enable-runtime-cpudetect libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libavresample 4. 0. 0 / 4. 0. 0 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100
要打印 FFmpeg 幫助部分:
$ ffmpeg -h
顯示 FFmpeg 手冊頁:
$ man ffmpeg