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 985b91e5f4 Fix setting output/device for Xine and VLC backend
- Fixed setting output and device on Xine and VLC backend
- Fixed track slider for Xine, VLC and Phonon
- Improved backend settings to better support multiple backends
- Added group by samplerate and bitdepth in collection
- Fixed crash on exit when existing instance of the application is already runnung caused by NVIDIA driver
- Changed Q_OS_MAC to Q_OS_MACOS
2018-06-28 01:15:32 +02:00
3rdparty Fix compile with clang and openbsd 2018-05-14 17:57:37 +02:00
cmake Fix crash 2018-06-11 22:35:46 +02:00
data Fix crash 2018-06-11 22:35:46 +02:00
dist Update README 2018-05-01 22:36:28 +02:00
ext Fix setting output/device for Xine and VLC backend 2018-06-28 01:15:32 +02:00
src Fix setting output/device for Xine and VLC backend 2018-06-28 01:15:32 +02:00
.gitignore Initial commit. 2018-02-27 18:06:05 +01:00
CMakeLists.txt Fix setting output/device for Xine and VLC backend 2018-06-28 01:15:32 +02:00
COPYING Remove duplicate copyright file. 2018-05-01 02:54:16 +02:00
Changelog Release 0.1.6 2018-06-07 23:23:59 +02:00
README.md Update README.md 2018-06-20 15:31:37 +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
  • 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

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

It has so far been tested to work on Linux, OpenBSD 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:

Required:

  • GLib, GIO and GObject
  • POSIX thread (pthread) libraries
  • CMake and Make tools
  • GCC or clang compiler
  • Protobuf library and compiler
  • Boost development headers
  • Qt 5 with components Core, Widgets, Network, Sql, Xml, OpenGL, Concurrent, Test, WebKitWidget, X11Extras and DBus
  • SQLite3
  • TagLib 1.11.1 or higher
  • Chromaprint library
  • libxml library
  • ALSA library (linux)
  • DBus (linux)
  • PulseAudio (linux optional)

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