Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Last active November 15, 2019 21:41
Show Gist options
  • Save rohan-molloy/c966f7dd81f805bb3c79ae4032154823 to your computer and use it in GitHub Desktop.
Save rohan-molloy/c966f7dd81f805bb3c79ae4032154823 to your computer and use it in GitHub Desktop.

Install RPM Fusion + Multimedia Codecs (Fedora)

sudo bash <(curl -fSsL https://gist.githubusercontent.com/rohan-molloy/c966f7dd81f805bb3c79ae4032154823/raw/3b9cce5aa9ed882f8a863583aec21c640f4d259f/RunFedoraCodecinstall.sh)
[[ $EUID -eq 0 ]] && dnf -y update \
&& dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm \
&& dnf install -y vlc \
gstreamer1-libav \
gstreamer1-plugins-bad-free \
gstreamer1-plugins-bad-free \
gstreamer1-plugins-bad-free-extras \
gstreamer1-plugins-bad-freeworld \
gstreamer1-plugins-good \
gstreamer1-plugins-ugly \
lame-libs \
ffmpeg \
x264 \
x265 \
smplayer \
&& dnf clean -y all \
&& echo Success || echo Fail;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment