maloja/README.md

74 lines
3.5 KiB
Markdown
Raw Normal View History

2018-11-27 18:31:52 +03:00
# Maloja
Simple self-hosted music scrobble database to create personal listening statistics. No recommendations, no social network, no nonsense.
2018-11-27 18:51:02 +03:00
## Never Asked Questions
2018-11-27 18:31:52 +03:00
2018-11-27 18:51:02 +03:00
### Why not Last.fm / Libre.fm?
2018-11-27 18:31:52 +03:00
2018-11-29 15:43:45 +03:00
Maloja is self-hosted. You will always be able to access your data, and not have to trust anyone to provide an API for it. Your library is not synced with any public or official music database, so you can follow your own tagging schema or even group associated artists together in your charts.
2018-11-27 18:31:52 +03:00
2018-11-27 18:51:02 +03:00
### Why not GNU FM?
2018-11-27 18:31:52 +03:00
2018-11-29 15:43:45 +03:00
Maloja gets rid of all the extra stuff: social networking, radios, recommendations, etc. It only keeps track of your listening history and lets you analyze it. This focus on its core allows it to potentially implement much better database features. One example: Maloja supports multiple artists per track. This means artists who are often just "featuring" in the track title get a place in your charts, and collaborations between several artists finally get credited to all participants.
2018-11-27 18:31:52 +03:00
2018-11-27 18:51:02 +03:00
### Why Maloja?
2018-11-27 18:31:52 +03:00
2018-11-27 18:51:02 +03:00
I like to name my projects after regions in Grisons, Switzerland. Don't waste your time trying to find a connection, I just picked one at random. Do visit Maloja though. It's a great pass to drive.
2018-11-27 18:31:52 +03:00
2018-11-27 18:51:02 +03:00
## Current status
2018-11-27 18:31:52 +03:00
2019-02-02 22:51:04 +03:00
You can check [my own Maloja page](https://maloja.krateng.ch) to see what it currently looks like.
2019-03-07 02:31:23 +03:00
There is only one scrobbler (a Chrome extension for Plex), but a very simple API to create your own scrobbler.
2018-11-28 15:46:58 +03:00
2019-02-17 18:27:55 +03:00
## Requirements
2018-12-06 15:36:42 +03:00
* [python3](https://www.python.org/) - [GitHub](https://github.com/python/cpython)
* [bottle.py](https://bottlepy.org/) - [GitHub](https://github.com/bottlepy/bottle)
* [waitress](https://docs.pylonsproject.org/projects/waitress/) - [GitHub](https://github.com/Pylons/waitress)
2018-12-06 15:36:42 +03:00
2019-02-17 18:27:55 +03:00
## How to install
2019-03-08 13:52:59 +03:00
1) Either install Maloja with a package, or download the repository to some arbitrary location. If you pick the manual installation, every command needs to be executed from the Maloja directory and led with `./`. You can also only download the file `maloja` instead of the whole repository and fetch the rest with
2019-02-17 18:27:55 +03:00
2019-03-07 02:31:23 +03:00
./maloja update
2) Start the server with
2019-02-16 23:43:57 +03:00
2019-03-07 02:31:23 +03:00
maloja start
2019-02-17 18:27:55 +03:00
If you're missing packages, the console output will tell you so. Install them.
2018-12-06 15:36:42 +03:00
2019-02-17 18:27:55 +03:00
2) (Recommended) Put your server behind a reverse proxy for SSL encryption. Configure that proxy to rewrite /db/ requests to the database port. In nginx this would look as follows:
2018-11-28 15:46:58 +03:00
2018-11-29 15:43:45 +03:00
location / {
proxy_pass http://yoururl:42010;
}
2018-11-28 15:46:58 +03:00
location /db {
rewrite ^/db(.*)$ $1 break;
2018-11-29 15:43:45 +03:00
proxy_pass http://yoururl:42011;
2018-11-28 15:46:58 +03:00
}
2019-02-17 18:27:55 +03:00
## How to use
2019-03-08 13:52:59 +03:00
If you didn't install Maloja from the package (and therefore don't have it in `/opt/maloja`), every command needs to be executed from the Maloja directory and led with `./`. Otherwise, all commands work in any location and without the prefix.
2019-03-07 02:31:23 +03:00
1) In order to scrobble your music from Plex Web, install the included Chrome extension. Make sure to enter the random key Maloja generates on first startup in the extension.
2019-02-16 23:43:57 +03:00
2019-03-07 02:31:23 +03:00
2) If you would like to import all your previous last.fm scrobbles, use [benfoxall's website](https://benjaminbenben.com/lastfm-to-csv/) ([GitHub page](https://github.com/benfoxall/lastfm-to-csv)). Use the command
2019-02-16 23:43:57 +03:00
2019-03-07 02:31:23 +03:00
maloja import *filename*
to import the downloaded file into Maloja.
3) You can interact with the server at any time with the commands
maloja stop
maloja restart
maloja start
maloja update
2019-03-10 20:14:50 +03:00
The `update` command will always fetch the latest version, while packages are only offered for release versions.