Skip to content

Instantly share code, notes, and snippets.

@erichnascimento
Created November 16, 2015 16:47
Show Gist options
  • Save erichnascimento/7dd4dd24352b997da5b7 to your computer and use it in GitHub Desktop.
Save erichnascimento/7dd4dd24352b997da5b7 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Reference: https://ask.fedoraproject.org/en/question/9111/sticky-what-plugins-do-i-need-to-install-to-watch-movies-and-listen-to-music/
#
# Set up the repositories
#
sudo yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
#
# Install minimal
#
sudo yum install gstreamer1-libav gstreamer1-plugins-good gstreamer1-plugins-ugly gstreamer1-plugins-bad-free gstreamer-ffmpeg gstreamer-plugins-good gstreamer-plugins-ugly gstreamer-plugins-bad gstreamer-plugins-bad-free gstreamer-plugins-bad-nonfree
#
# If you also plan to listen to internet radio streams via rhythmbox for example, you need a few more packages:
#
sudo yum install gstreamer1-plugins-good gstreamer1-plugins-ugly gstreamer1-plugins-bad-free gstreamer1-plugins-bad-free-extras gstreamer1-plugins-bad-freeworld gstreamer-plugin-crystalhd gstreamer-ffmpeg gstreamer-plugins-good gstreamer-plugins-ugly gstreamer-plugins-bad gstreamer-plugins-bad-extras gstreamer-plugins-bad-free gstreamer-plugins-bad-free-extras gstreamer-plugins-bad-nonfree gstreamer-plugins-bad-extras libmpg123 lame-lib
#
# VLC player plays most formats and is a nice application to have installed:
#
sudo yum install vlc
#
# NOTE: For Fedora 22+, please replace yum with dnf.
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment