strawberry-audio-player-win.../README

68 lines
2.6 KiB
Plaintext
Raw Normal View History

2017-05-07 14:41:46 +02:00
Strawberry Music Player
2018-02-27 18:06:05 +01:00
=======================
README
2018-03-02 23:05:20 +01:00
Strawberry is a modern audio player and music collection organiser. It was forked from Clementine in 2013, and has a diffrent goal.
It's written in C++ and Qt5 and runs on Linux. The name is inspired by the band Strawbs.
2018-02-27 18:06:05 +01:00
The main goal was to create a player for playing local music files that looked a bit more like Amarok 1.4 amd with advanced soundcard options.
You will find that Strawberry is lacking internet services and some other features found in Clementine.
Some differences between Strawberry and Clementine are:
- Status widget similar to context in Amarok 1.4
- Settings have been reorganized
- Advanced backend settings with support for several backends and advanced options
- No Smart playlists, visualizations or cd ripping support
- No LastFM, podcast or internet features except for fetching album covers
There are no plans to add internet streaming features, but if we would add something it has to be a service providing high quality audio and not low audio quality like Spotify.
You can obtain and view the sourcecode on github at: https://github.com/jonaski/strawberry
2018-03-31 16:49:06 +02:00
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 package
2018-04-01 14:35:44 +02:00
* The following Qt5 components are required with additional development packages:
- Qt5Core, Qt5Widgets, Qt5Network, Qt5Sql, Qt5Xml, Qt5OpenGL, Qt5Concurrent, Qt5Test, 5X11Extras, Qt5WebKit, Qt5WebKitWidget and Qt5DBus.
2018-03-31 16:49:06 +02:00
* 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.
2018-02-27 18:06:05 +01:00
Compiling from source
---------------------
Get the code:
2018-03-31 16:49:06 +02:00
git clone https://github.com/jonaski/strawberry
2018-02-27 18:06:05 +01:00
Compile and install:
mkdir strawberry-build
cd strawberry-build
cmake ../strawberry
2018-03-31 16:49:06 +02:00
make -j8
2018-02-27 18:06:05 +01:00
sudo make install
2018-03-31 16:49:06 +02:00
(dont change to the source directory, if you created the build directory inside the source directory type: cmake .. instead).