Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS. Updated and somewhat fixed fork.
Go to file
Jürgen Mang b80b4187b5
Update Dockerfile
2019-02-01 08:58:37 +01:00
.github/ISSUE_TEMPLATE Update issue templates 2018-05-25 21:23:16 +02:00
cmake initial mongoose checkin 2014-03-08 12:30:48 +01:00
contrib Fix: rename configuration options 2019-01-31 21:39:16 +00:00
debian Merge branch 'devel' into decoupling 2019-01-28 23:06:52 +01:00
dist Fix: update minified files 2019-01-28 22:18:36 +00:00
htdocs Fix: update minified files 2019-01-28 22:18:36 +00:00
src Renamed configuration options 2019-02-01 08:53:50 +01:00
CMakeLists.txt Disable build for valingrid 2019-01-28 00:35:03 +00:00
Dockerfile Update Dockerfile 2019-02-01 08:58:37 +01:00
LICENSE replaces libwebsockets with mongoose, changed licese to gpl 2014-03-08 12:30:49 +01:00
PKGBUILD Feat: initial working code 2019-01-05 00:01:34 +00:00
README.md Update README.md 2019-01-31 23:01:56 +01:00
mkclean.sh Fix: simplified packaging 2018-09-20 23:04:35 +01:00
mkdebian.sh Fix: update debian version 2018-11-15 22:08:17 +00:00
mkdebug.sh Fix: don't use if/then blocks 2019-01-21 20:51:24 +00:00
mkrelease.sh Feat: Docker build 2019-01-24 00:11:31 -05:00

README.md

myMPD

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 little dependencies.

myMPD is a fork of ympd (https://github.com/notandy/ympd). 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.

Design principles:

  • Keep it small and simple
  • Uses only mpd as source of truth
  • Mobile first UI
  • Keep security in mind

Featurelist:

  • Control mpd functions (play, pause, etc.)
  • Set mpd settings (repeat, random, etc.)
  • Browse mpd database by tags
  • Browse filesystem and playlists
  • Queue management
  • Playlist management
  • Advanced search (requires mpd >= 0.21.x and libmpdclient >= 2.17)
  • Jukebox mode (add's random songs / albums from database or playlists to queue)
  • AutoPlay - add song to (empty) queue and mpd starts playing
  • Smart playlists and saved searches
  • Play statistics and song voting (requires mpd stickers)
  • Local coverart support (Albums and Streams)
  • HTTP stream support
  • Local playback of mpd http stream (html5 audio api)
  • Progressiv Web App enabled
  • Embedded Webserver (mongoose)
  • Docker support (experimental)

myMPD is work in progress. Bugreportes and feature requests are very welcome.

Screenshots

image

UI Components

Backend

Dependencies

Build Dependencies

  • cmake 2.6
  • libasan3: for debug builds only
  • Java: optional for minifying .css and .js files

Unix Build Instructions

  1. Install dependencies: cmake, libmpdclient (dev), OpenSSL (dev) and Java are available from all major distributions.
  2. Build and install: cd /path/to/src; ./mkrelease.sh (toplevel directory of myMPD tarball).
  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.

Run

Usage: ./mympd [/etc/mympd/mympd.conf]

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.

SSL

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

myMPD: 2018-2019 mail@jcgames.de ympd: 2013-2014 andy@ndyk.de