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 0af0af2415 Release 0.1.2 2018-05-02 00:18:54 +02:00
3rdparty Includes, comments and bugfixes 2018-05-01 00:41:33 +02:00
cmake Release 0.1.2 2018-05-02 00:18:54 +02:00
data Remove file. 2018-04-08 17:36:18 +02:00
dist Update README 2018-05-01 22:36:28 +02:00
ext Fix musicbrainz tag fetcher 2018-05-01 13:46:10 +02:00
src Don't fail playback without replay gain 2018-05-01 14:00:26 +02:00
.gitignore Initial commit. 2018-02-27 18:06:05 +01:00
CMakeLists.txt Release 0.1.2 2018-05-02 00:18:54 +02:00
COPYING Remove duplicate copyright file. 2018-05-01 02:54:16 +02:00
Changelog Release 0.1.2 2018-05-02 00:18:54 +02:00
README.md Update README 2018-05-01 22:36:28 +02:00
cmake_uninstall.cmake.in Initial commit. 2018-02-27 18:06:05 +01:00

README.md

Strawberry Music Player

README

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 Qt5. The name is inspired by the band Strawbs.

Features:

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

You can obtain and view the sourcecode on github at: https://github.com/jonaski/strawberry

It has so far been tested on Linux and cross compiled for Windows. I have not had a chance to test it on Mac OS X since I don't have a mac.

Requirements

To build Strawberry from source you need the following installed on your system:

  • glib2, glib2-devel, git, cmake, make, gcc and gcc-c++

  • protobuf and development packages

  • boost development headers

  • The following Qt5 components are required with additional development packages:

  • Qt5Core, Qt5Widgets, Qt5Network, Qt5Sql, Qt5Xml, Qt5OpenGL, Qt5Concurrent, Qt5Test, 5X11Extras, Qt5WebKit, Qt5WebKitWidget and Qt5DBus.
  • ALSA and libasound2 with development files
  • SQLite3 with development files
  • libchromaprint with development files
  • libglu with development files

Either GStreamer, Xine or VLC engine is required, but only GStreamer is fully implemented so far. You should also install the gstreamer plugins: gstreamer-plugins-base, gstreamer-plugins-good and gstreamer-plugins-bad

  • The Qt5 specific LastFM library and development files are required for fetching album covers from LastFM.
  • To enable CD support for playing audio cd's you need libcdio.
  • If you want MTP support you need libmtp.
  • If you need iPod Classic support you need libgpod.

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).