ympd/README.md

94 lines
3.3 KiB
Markdown
Raw Normal View History

myMPD
2018-07-15 22:41:16 +00:00
=====
2014-01-17 19:03:08 +00:00
myMPD is a lightweight MPD web client that runs without a dedicated webserver or interpreter.
It's tuned for minimal resource usage and requires only very litte dependencies.
2014-01-17 19:03:08 +00:00
2019-01-31 21:02:53 +00:00
myMPD is a fork of ympd (https://github.com/notandy/ympd).
2018-07-30 22:25:52 +00:00
This fork provides a reworked ui based on Bootstrap 4, a modernized backend and many new features while having the same small footprint as ympd.
2014-03-11 19:29:39 +00:00
2018-07-30 22:28:31 +00:00
**Design principles:**
2018-07-11 00:01:04 +00:00
- Keep it small and simple
- Uses only mpd as source of truth
- Mobile first UI
- Keep security in mind
2018-07-30 22:28:31 +00:00
**Featurelist:**
2018-07-22 19:04:30 +00:00
- Control mpd functions (play, pause, etc.)
- Set mpd settings (repeat, random, etc.)
2018-09-11 20:36:28 +00:00
- Browse mpd database by tags
2018-07-11 00:01:04 +00:00
- Browse filesystem and playlists
- Queue management
2018-07-22 19:04:30 +00:00
- Playlist management
2018-11-27 15:41:43 +00:00
- Advanced search (requires mpd >= 0.21.x and libmpdclient >= 2.17)
2018-09-29 08:50:09 +00:00
- Jukebox mode (add's random songs / albums from database or playlists to queue)
2019-01-21 21:42:31 +00:00
- AutoPlay - add song to (empty) queue and mpd starts playing
2018-09-29 08:50:09 +00:00
- Smart playlists and saved searches
2018-11-27 15:41:43 +00:00
- Play statistics and song voting (requires mpd stickers)
2018-08-30 20:32:51 +00:00
- Local coverart support (Albums and Streams)
2018-07-29 22:54:30 +00:00
- HTTP stream support
- Local playback of mpd http stream (html5 audio api)
2018-09-29 08:50:09 +00:00
- Progressiv Web App enabled
2018-08-22 12:59:08 +00:00
- Embedded Webserver (mongoose)
2019-01-31 21:58:09 +00:00
- Docker support (experimental)
2018-07-11 00:01:04 +00:00
2018-07-30 22:25:52 +00:00
myMPD is work in progress. Bugreportes and feature requests are very welcome.
2018-08-27 20:27:45 +00:00
- https://github.com/jcorporation/myMPD/issues
2018-07-11 00:01:04 +00:00
2018-07-30 22:28:31 +00:00
Screenshots
-----------
2018-08-27 20:44:13 +00:00
![image](https://jcgames.de/stuff/myMPD/screenshots_2018-08-27.gif)
2018-06-03 22:08:41 +00:00
UI Components
-------------
- Bootstrap 4: https://getbootstrap.com/
2018-07-10 22:57:45 +00:00
- Material Design Icons: https://material.io/tools/icons/
- Bootstrap Native: http://thednp.github.io/bootstrap.native/
2014-01-17 19:03:08 +00:00
2018-05-24 18:35:11 +00:00
Backend
-------
- Mongoose: https://github.com/cesanta/mongoose
- Frozen: https://github.com/cesanta/frozen
- inih: https://github.com/benhoyt/inih
2018-05-24 18:35:11 +00:00
2014-01-17 19:03:08 +00:00
Dependencies
------------
- libmpdclient 2: http://www.musicpd.org/libs/libmpdclient/
2018-07-10 22:57:45 +00:00
- OpenSSL: https://www.openssl.org/
2018-07-30 22:16:31 +00:00
2018-07-30 22:28:31 +00:00
Build Dependencies
2018-07-30 22:13:27 +00:00
------------------
- cmake 2.6
- libasan3: for debug builds only
2018-08-28 15:05:51 +00:00
- Java: optional for minifying .css and .js files
2014-01-17 19:03:08 +00:00
Unix Build Instructions
-----------------------
2018-08-28 15:05:51 +00:00
1. Install dependencies: cmake, libmpdclient (dev), OpenSSL (dev) and Java are available from all major distributions.
2019-01-21 21:42:31 +00:00
2. Build and install: ```cd /path/to/src; ./mkrelease.sh``` (toplevel directory of myMPD tarball).
2018-07-15 22:41:16 +00:00
3. Link your mpd music directory to ```/usr/share/mympd/htdocs/library``` and put ```folder.jpg``` files in your album directories (mkrelease.sh tries to do this for you).
4. Configure your mpd with http stream output to use the local player.
2014-01-17 19:03:08 +00:00
2019-01-21 21:42:31 +00:00
Run
2014-03-18 00:37:33 +00:00
---------
```
2019-01-30 22:30:45 +00:00
Usage: ./mympd [/etc/mympd/mympd.conf]
2014-03-18 00:37:33 +00:00
```
2019-01-21 21:42:31 +00:00
The ```./mkrelease.sh``` script tries to install a systemd service file. If this failes you can copy the ```mympd.service``` file from ```/usr/share/mympd/``` to appropriate distribution specific location.
2014-03-18 00:37:33 +00:00
SSL
---
2018-08-28 15:05:51 +00:00
1. Create ca and certificate ```/usr/share/mympd/crcert.sh``` (mkrelease.sh does this for you).
2. Set ```ssl=true``` in /etc/mympd/mympd.conf (use default certificate under ```/etc/mympd/ssl/```).
2018-07-15 22:41:16 +00:00
3. Import ```/etc/mympd/ssl/ca/ca.pem``` in your browser to trust the certificate.
4. myMPD redirects http requests to https, ensure that myMPD hostname is resolvable.
2014-01-17 19:03:08 +00:00
Copyright
---------
2019-01-31 21:05:52 +00:00
myMPD: 2018-2019 <mail@jcgames.de>
2019-01-21 21:42:31 +00:00
ympd: 2013-2014 <andy@ndyk.de>