Search code examples
linuxffmpegcentosrhel7

How to install ffmpeg on rhel7


whein i installing ffmpeg on RHEL,i got an error like this

> Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libopenal.so.1()(64bit) Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libva.so.1()(64bit) Error: Package: ffmpeg-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libvdpau.so.1()(64bit) Error: Package: libavdevice-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libSDL-1.2.so.0()(64bit) Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libass.so.5()(64bit) Error: Package: ffmpeg-libs-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libschroedinger-1.0.so.0()(64bit) Error: Package: ffmpeg-2.6.8-3.el7.nux.x86_64 (nux-dextop)
>            Requires: libSDL-1.2.so.0()(64bit

RHEL7 is not registered.


Solution

  • You can install ffmpeg on your rhel7 server using RPM.

    sudo yum install -y https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
    sudo yum install -y ffmpeg
    

    After the install verify ffmpeg version

    ffmpeg -version
    

    For more information check the below link.

    ffmpeg basic examples