Stackpost용 Linux에서 FFmpeg를 설치하는 방법

게시 됨: 2021-07-10
Stackpost용 Linux에서 FFmpeg를 설치하는 방법

목차

  • Linux에 FFmpeg 설치
    • 1. Arch Linux 및 파생 제품에 FFmpeg 설치
    • 2. 데비안에 FFmpeg 설치
    • 3. Ubuntu 및 파생 제품에 FFmpeg 설치
    • 4. Fedora, RHEL, CentOS에 FFmpeg 설치
    • 5. openSUSE에 FFmpeg 설치

FFmpeg는 모든 유형의 미디어 파일을 인코딩, 디코딩, 트랜스코딩, mux, demux, 녹음, 스트리밍, 필터링 및 재생하는 데 사용할 수 있는 최고의 멀티미디어 프레임워크 중 하나입니다. 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에서 사용할 수 있습니다. , 예를 들어 Yay와 같은 AUR 도우미를 사용하여 설치할 수 있습니다.

 $ yay -S ffmpeg-git

AUR에는 ffmpeg-full 패키지도 있으며 가능한 한 많은 옵션 기능이 활성화되어 있습니다. 원한다면 그것도 설치할 수 있습니다.

 $ yay -S ffmpeg-full-git

2. 데비안에 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는 RHEL, Fedora, CentOS와 같은 RPM 기반 배포에서 EPEL 및 RPM Fusion 리포지토리를 통해 설치할 수 있습니다.

먼저 다음 명령을 사용하여 EPEL 저장소를 추가합니다.

 $ sudo dnf install epel-release

사용하는 배포판에 따라 아래와 같이 RPM Fusion 리포지토리를 추가합니다.

무료 및 비무료 저장소에 대한 액세스를 활성화하려면 다음 명령을 사용하십시오.

페도라 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

오픈수세 립에서:

 $ 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