ffmpeg를 설치할 때 아래와 같은 오류가 발생하면,
[root@8ae333e6d4d0 app]# yum install ffmpeg
RPM Fusion for EL 9 - Nonfree - Updates 66 kB/s | 91 kB 00:01
Error:
Problem: package ffmpeg-5.1.6-2.el9.x86_64 from rpmfusion-free-updates requires libavfilter.so.8()(64bit), but none of the providers can be installed
- package ffmpeg-5.1.6-2.el9.x86_64 from rpmfusion-free-updates requires libavfilter.so.8(LIBAVFILTER_8)(64bit), but none of the providers can be installed
- package libavfilter-free-5.1.4-3.el9.x86_64 from epel requires librubberband.so.2()(64bit), but none of the providers can be installed
- package ffmpeg-libs-5.1.6-2.el9.x86_64 from rpmfusion-free-updates requires librubberband.so.2()(64bit), but none of the providers can be installed
- conflicting requests
- nothing provides ladspa needed by rubberband-3.1.3-2.el9.x86_64 from epel
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
아래와 같이 수행하여야 함.
dnf -y install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-9.noarch.rpm && \
dnf config-manager --set-enabled crb && \
dnf -y install ffmpeg