sudo bash <(curl -fSsL https://gist.githubusercontent.com/rohan-molloy/c966f7dd81f805bb3c79ae4032154823/raw/3b9cce5aa9ed882f8a863583aec21c640f4d259f/RunFedoraCodecinstall.sh)
Last active
November 15, 2019 21:41
-
-
Save rohan-molloy/c966f7dd81f805bb3c79ae4032154823 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ $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