-
-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux Multimedia
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to multimedia on Arch Linux, including video playback, audio editing, codecs, media servers, and multimedia applications.
Install multimedia codecs:
# Install codecs
sudo pacman -S gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly
# Install additional codecs
sudo pacman -S gst-libav
# For 32-bit support
sudo pacman -S lib32-gst-plugins-base lib32-gst-plugins-good lib32-gst-plugins-bad lib32-gst-plugins-uglyInstall FFmpeg:
# Install FFmpeg
sudo pacman -S ffmpeg
# Check codecs
ffmpeg -codecsInstall VLC:
# Install VLC
sudo pacman -S vlc
# Launch
vlcInstall MPV:
# Install MPV
sudo pacman -S mpv
# Launch
mpv video.mp4
# With GUI
mpv --player-operation-mode=pseudo-gui video.mp4Install MPlayer:
# Install MPlayer
sudo pacman -S mplayer
# Launch
mplayer video.mp4Install Audacious:
# Install Audacious
sudo pacman -S audacious
# Launch
audaciousInstall Clementine:
# Install Clementine
sudo pacman -S clementine
# Launch
clementineInstall Rhythmbox:
# Install Rhythmbox
sudo pacman -S rhythmbox
# Launch
rhythmboxKdenlive:
# Install Kdenlive
sudo pacman -S kdenlive
# Launch
kdenliveOpenShot:
# Install OpenShot
yay -S openshot-qt
# Launch
openshot-qtDaVinci Resolve:
# See DaVinci Resolve guide
# Install from Blackmagic websiteAudacity:
# Install Audacity
sudo pacman -S audacity
# Launch
audacityArdour:
# Install Ardour
sudo pacman -S ardour
# Launch
ardourInstall Plex:
# Install Plex
yay -S plex-media-server
# Enable service
sudo systemctl enable plexmediaserver
sudo systemctl start plexmediaserver
# Access: http://localhost:32400/webInstall Jellyfin:
# Install Jellyfin
sudo pacman -S jellyfin
# Enable service
sudo systemctl enable jellyfin
sudo systemctl start jellyfin
# Access: http://localhost:8096Install Kodi:
# Install Kodi
sudo pacman -S kodi
# Launch
kodiInstall OBS:
# Install OBS
sudo pacman -S obs-studio
# Launch
obsInstall Streamlabs:
# Install Streamlabs
yay -S streamlabs-obs-bin
# Launch
streamlabs-obsThis guide covered:
- Codecs - Install multimedia codecs
- Video players - VLC, MPV, MPlayer
- Audio players - Audacious, Clementine
- Editing - Video and audio editing
- Media servers - Plex, Jellyfin, Kodi
- Streaming - OBS Studio
Key Takeaways:
- Install codecs for playback
- VLC supports most formats
- MPV is lightweight
- Use media servers for streaming
- OBS for streaming/recording
- Arch Linux Audio Configuration - Audio setup
- Arch Linux Graphics Drivers - GPU setup
- ArchWiki Multimedia: https://wiki.archlinux.org/title/List_of_applications/Multimedia
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.