Strawberry è un lettore musicale e un organizzatore di collezioni musicali. È un fork di Clementine rilasciato nel 2018 rivolto ai collezionisti di musica, agli audiofili, ai podcaster e agli utilizzatori di funkwhale. https://funkwhale.it
Go to file
Jonas Kvinge e32ed02a24 Fix RPM build 2018-07-12 00:07:29 +02:00
3rdparty Replace fromAscii() with fromLatin1() 2018-07-03 19:31:49 +02:00
cmake Fix RPM build 2018-07-12 00:07:29 +02:00
data Fix crash 2018-06-11 22:35:46 +02:00
dist Fix RPM build 2018-07-12 00:07:29 +02:00
ext More macos fixes 2018-07-03 17:51:52 +02:00
src Fix RPM build 2018-07-12 00:07:29 +02:00
.gitignore Fix RPM build 2018-07-12 00:07:29 +02:00
.travis.yml Update .travis.yml 2018-07-05 18:56:14 +02:00
CMakeLists.txt Fix build with cmake with < 3.1 2018-07-11 17:23:44 +02:00
COPYING Remove duplicate copyright file. 2018-05-01 02:54:16 +02:00
Changelog Release 0.2.1 2018-07-05 02:55:51 +02:00
README.md Update README.md 2018-07-08 19:50:16 +02:00
cmake_uninstall.cmake.in Initial commit. 2018-02-27 18:06:05 +01:00

README.md

🍓 Strawberry Music Player Build Status

Strawberry is a audio player and music collection organizer. It is a fork of Clementine created in 2013 with a diffrent goal. It's written in C++ and Qt 5. The name is inspired by the band Strawbs.

✔️ Features:

  • Play and organize music
  • Native desktop notifications
  • Playlists in multiple formats
  • Edit tags on music files
  • Fetch tags from MusicBrainz
  • Album cover art from Lastfm, Musicbrainz, Discogs and Amazon
  • Support for multiple backends
  • Transfer music to iPod, iPhone, MTP or mass-storage USB player

It has so far been tested to work on Linux, OpenBSD, MacOs and Windows (cross compiled using mingw).

Requirements

To build Strawberry from source you need the following installed on your system with the additional development packages/headers:

Either GStreamer, Xine or VLC 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.

Optional:

  • The Qt 5 LastFM library is required for fetching album covers from LastFM.
  • libcdio - To enable Audio CD support
  • libmtp - MTP support.
  • libgpod - iPod Classic support.

🔧 Compiling from source

Get the code:

git clone https://github.com/jonaski/strawberry

Compile and install:

mkdir strawberry-build
cd strawberry-build
cmake ../strawberry
make -j8
sudo make install

(dont change to the source directory, if you created the build directory inside the source directory type: cmake .. instead).