5.2 KiB
🍓 Strawberry Music Player
Strawberry is a music player and music collection organizer. It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. It's written in C++ using the Qt 5 framework.
Resources:
- Website: https://www.strawberrymusicplayer.org/
- Forum: https://forum.strawberrymusicplayer.org/
- Github: https://github.com/strawberrymusicplayer/strawberry
- Buildbot: https://buildbot.strawberrymusicplayer.org/
- Latest builds: https://builds.strawberrymusicplayer.org/
- openSUSE buildservice: https://build.opensuse.org/package/show/home:jonaski:audio/strawberry
- PPA: https://launchpad.net/~jonaski/+archive/ubuntu/strawberry
- Translations: https://translate.zanata.org/iteration/view/strawberry/master
The program is free software, released under GPL. If you like this program and can make use of it, consider sponsoring or donating to help funding the project. To sponsor, visit my GitHub sponsors profile. Funding developers through GitHub Sponsors is one more way to contribute to open source projects you appreciate, it helps developers get the resources they need, and recognize contributors working behind the scenes to make open source better for everyone. You can also make a one-time payment through paypal.me/jonaskvinge
✔️ Features:
- Play and organize music
- Supports WAV, FLAC, WavPack, DSF, DSDIFF, Ogg FLAC, Ogg Vorbis, Ogg Opus, Ogg Speex, MPC, TrueAudio, AIFF, MP4, MP3, ASF and Monkey's Audio.
- Audio CD playback
- Native desktop notifications
- Playlists in multiple formats
- Advanced audio output and device configuration for bit-perfect playback on Linux
- Edit tags on music files
- Fetch tags from MusicBrainz
- Album cover art from Last.fm, Musicbrainz, Discogs and Deezer
- Song lyrics from AudD, lyrics.ovh and lololyrics.com
- Support for multiple backends
- Audio analyzer
- Audio equalizer
- Transfer music to iPod, iPhone, MTP or mass-storage USB player
- Scrobbler with support for Last.fm, Libre.fm and ListenBrainz
- Subsonic streaming support
It has so far been tested to work on Linux, OpenBSD and Windows.
We currently do not provide releases for macOS because there aren't any macOS developers actively working on this project. It is still possible to compile by following the instructions in the Wiki
❗ Requirements
To build Strawberry from source you need the following installed on your system with the additional development packages/headers:
- CMake and Make tools
- GCC or clang compiler
- Boost
- POSIX thread (pthread)
- GLib
- Protobuf library and compiler
- Qt 5.6 or higher with components Core, Gui, Widgets, Concurrent, Network and Sql
- Qt 5 components X11Extras and DBus for Linux/BSD, MacExtras for macOS and WinExtras for Windows
- SQLite 3.9 or newer with FTS5
- Chromaprint library
- ALSA library (linux)
- DBus (linux)
- PulseAudio (linux optional)
- GStreamer, Xine, VLC or Phonon
- GnuTLS
Optional dependencies:
- Audio CD: libcdio
- MTP devices: libmtp
- iPod Classic devices: libgpod
- iPhone, iPod Touch, iPad and Apple TV devices: libimobiledevice, libplist and libusbmuxd
- Moodbar: fftw3
Either GStreamer, Xine, VLC or Phonon engine is required, but only GStreamer is fully implemented so far. You should also install the gstreamer plugins base and good, and optionally bad and ugly.
🔧 Compiling from source
Get the code:
git clone https://github.com/strawberrymusicplayer/strawberry
Compile and install:
cd strawberry
mkdir build && cd build
cmake ..
make -j4
sudo make install