LinuxforStackpostにFFmpegをインストールする方法

公開: 2021-07-10
LinuxforStackpostにFFmpegをインストールする方法

目次

  • LinuxにFFmpegをインストールする
    • 1.ArchLinuxとその派生物にFFmpegをインストールします
    • 2.DebianにFFmpegをインストールします
    • 3.Ubuntuとその派生物にFFmpegをインストールします
    • 4. FFmpegをFedora、RHEL、CentOSにインストールします
    • 5.openSUSEにFFmpegをインストールします

FFmpegは、あらゆるタイプのメディアファイルのエンコード、デコード、トランスコード、マルチプレクサ、デマルチプレクサ、記録、ストリーミング、フィルタリング、および再生に使用できる最高のマルチメディアフレームワークの1つです。 これは完全に無料のマルチメディアフレームワークであり、Linux、Mac OS X、Microsoft Windows、BSD、Solarisなどを含むほぼすべてのオペレーティングシステムで動作します。

LinuxにFFmpegをインストールする

FFmpegはほとんどのLinuxディストリビューション用にパッケージ化されており、デフォルトのリポジトリで利用できます。 一般的なLinuxディストリビューションのインストール手順は次のとおりです。

1.ArchLinuxとその派生物にFFmpegをインストールします

FFmpegは、ArchLinuxのデフォルトのリポジトリで利用できます。 次のコマンドを使用してインストールできます。

 $ sudo pacman -S ffmpeg

最新の開発バージョンはAURで入手できます。 、したがって、YayなどのAURヘルパーを使用してインストールできます。

 $ 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は少し古くなっている可能性があります。 最新バージョンをインストールするには、FFmpegPPAを使用してください。

 $ sudo add-apt-repository ppa:mc3man/trusty-media
 $ sudo apt-get update
 $ sudo apt-get dist-upgrade

4. FFmpegをFedora、RHEL、CentOSにインストールします

FFmpegは、RHEL、Fedora、CentOSなどのRPMベースのディストリビューションにEPELおよびRPMFusionリポジトリを介してインストールできます。

まず、次のコマンドを使用してEPELリポジトリを追加します。

 $ sudo dnf install epel-release

使用するディストリビューションに応じて、以下に示すようにRPMFusionリポジトリを追加します。

フリーリポジトリと非フリーリポジトリの両方へのアクセスを有効にするには、次のコマンドを使用します。

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およびRPMFusionリポジトリを有効にした後、次のコマンドを実行して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