How to Set Up Media Players with Cinnamon Desktop on Linux Mint
Categories:
4 minute read
Linux Mint, with its Cinnamon desktop environment, offers a great balance between usability and customization. One of the key aspects of a good user experience is setting up media players to handle your audio and video files efficiently. Whether you’re watching movies, listening to music, or streaming content, Linux Mint provides multiple options for setting up and configuring media players.
This guide will walk you through installing, configuring, and optimizing media players on the Cinnamon desktop.
Choosing the Right Media Player
Linux Mint comes with a default media player, Celluloid (formerly GNOME MPV), which is lightweight and efficient. However, you might prefer alternatives based on your specific needs. Here are some popular choices:
- VLC Media Player – Highly versatile, supports almost all formats.
- SMPlayer – A front-end for MPlayer, great for advanced users.
- MPV – Lightweight and powerful, with scripting capabilities.
- Rhythmbox – Best for managing and playing music.
- Audacious – Lightweight audio player with Winamp-style UI.
Installing Media Players
Most media players are available in Linux Mint’s repositories and can be installed via the terminal or Software Manager.
Using Terminal
Open a terminal (Ctrl + Alt + T
) and use the following commands to install media players:
VLC
sudo apt install vlc
SMPlayer
sudo apt install smplayer
MPV
sudo apt install mpv
Rhythmbox
sudo apt install rhythmbox
Audacious
sudo apt install audacious
Alternatively, you can install these from Software Manager by searching for the media player and clicking Install.
Configuring Default Media Player
Once installed, you may want to set your preferred player as the default for opening media files.
- Open System Settings from the menu.
- Navigate to Preferred Applications.
- Under the Multimedia tab, select your desired media player.
- Close the settings window.
Now, any media file you open will default to your chosen application.
Integrating Media Players with Cinnamon Desktop
Adding Media Player to Panel
For quick access, you can add your media player to the Cinnamon panel.
- Open the Menu.
- Search for your media player (e.g., VLC).
- Right-click on it and select Add to Panel.
Adding Media Controls to the Sound Applet
Cinnamon’s sound applet can integrate with certain media players, allowing playback control from the system tray.
- Open Rhythmbox or VLC.
- Start playing any audio or video file.
- Click on the sound icon in the system tray.
- You should see playback controls (Play/Pause, Next, Previous).
If controls are not appearing, ensure the MPRIS2 plugin is enabled in your media player’s settings.
Optimizing Media Player Performance
Enabling Hardware Acceleration (VLC & MPV)
If you experience lag or stuttering, enabling hardware acceleration can help.
VLC
- Open VLC and go to Tools > Preferences.
- Select Input / Codecs.
- Under Hardware-accelerated decoding, choose Automatic or VA-API (for Intel/AMD GPUs).
- Save and restart VLC.
MPV
Open the MPV configuration file (create it if it doesn’t exist):
mkdir -p ~/.config/mpv nano ~/.config/mpv/mpv.conf
Add the following lines:
hwdec=auto
Save and exit (
Ctrl + X
, thenY
, thenEnter
).Restart MPV.
Enabling Additional Codecs
While most modern media players support a wide range of formats, you might encounter unsupported codecs. To install additional codecs, run:
sudo apt install ubuntu-restricted-extras
This package includes proprietary codecs like MP3, H.264, and some Microsoft fonts.
Customizing Media Player Appearance
Most media players allow theme customization to match the Cinnamon desktop.
VLC Skins
- Download VLC skins from VLC’s official website.
- Open VLC, go to Tools > Preferences > Interface.
- Select Use custom skin, then browse to the downloaded file.
- Restart VLC.
SMPlayer Themes
- Open SMPlayer and go to Options > Preferences.
- Under Interface, change the icon theme and GUI style.
- Click Apply.
Troubleshooting Common Issues
Media Player Won’t Open
Run the player from the terminal to check for errors. Example:
vlc
If an error appears, try reinstalling:
sudo apt remove --purge vlc sudo apt install vlc
No Sound or Audio Problems
Ensure your media player is not muted.
Open PulseAudio Volume Control (
pavucontrol
) and check output settings.sudo apt install pavucontrol pavucontrol
Restart the audio service:
pulseaudio --kill && pulseaudio --start
Video Stuttering or Lagging
Enable hardware acceleration as described earlier.
Lower the resolution or use a different player.
Check if another process is using too many system resources with:
top
Conclusion
Setting up media players on Linux Mint with the Cinnamon desktop is simple and highly customizable. Whether you prefer VLC, MPV, SMPlayer, or another option, configuring them properly enhances your multimedia experience. With these optimizations, you can enjoy smooth playback, better performance, and seamless desktop integration.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.