|
21 hours ago | |
---|---|---|
.circleci | 1 month ago | |
.github | 1 week ago | |
3rdparty | 4 days ago | |
cmake | 2 weeks ago | |
data | 3 days ago | |
debian | 1 month ago | |
dist | 1 day ago | |
ext | 4 days ago | |
src | 21 hours ago | |
tests | 1 month ago | |
.clang-format | 6 months ago | |
.gitignore | 8 months ago | |
.travis.yml | 3 weeks ago | |
CMakeLists.txt | 2 days ago | |
COPYING | 2 years ago | |
Changelog | 3 days ago | |
README.md | 3 days ago | |
cmake_uninstall.cmake.in | 3 years ago |
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 toolkit.
Resources:
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 fund the project. There are currently 3 options for sponsoring:
Funding developers is a 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.
It has so far been tested to work on Linux, OpenBSD, FreeBSD, macOS and Windows.
There currently isn’t any macOS developers actively working on this project, so we might not be able to help you with issues related to macOS.
To build Strawberry from source you need the following installed on your system with the additional development packages/headers:
Optional dependencies:
Either GStreamer or VLC engine is required, but only GStreamer is fully implemented, and works best, it is therefore recommended to use GStreamer. You should also install the gstreamer plugins base and good, and optionally bad, ugly and libav.
git clone https://github.com/strawberrymusicplayer/strawberry
cd strawberry
mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install
To compile with Qt 6 use:
cmake .. -DBUILD_WITH_QT6=ON