Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS. Updated and somewhat fixed fork.
Go to file
jcorporation fbb32ae17a Fix: improve speed for listing large queues 2018-08-21 23:56:17 +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 Feat: add config options for stickerusage and mixramp settings 2018-08-21 20:28:13 +01:00
dist Fix: source code cleanups 2018-08-21 23:02:22 +01:00
htdocs Fix: improve speed for listing large queues 2018-08-21 23:56:17 +01:00
src Fix: improve speed for listing large queues 2018-08-21 23:56:17 +01:00
CMakeLists.txt Fix: Bump version to 3.6 2018-08-14 16:30:53 +02:00
LICENSE replaces libwebsockets with mongoose, changed licese to gpl 2014-03-08 12:30:49 +01:00
README.md Feat: replace commandline options with ini file under /etc/mympd/mympd.conf 2018-08-06 21:51:48 +01:00
mkclean.sh fix: remove temporary files 2018-07-30 23:29:01 +01:00
mkdebug.sh fix: moved 3-party sources and buildtools to dist directory 2018-07-30 23:05:37 +01:00
mkrelease.sh Fix: source code cleanups 2018-08-21 23:02:22 +01: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 litte 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 albumartist
  • Browse filesystem and playlists
  • Queue management
  • Playlist management
  • Advanced search
  • Progressiv Web App enabled
  • Local coverart support
  • HTTP stream support
  • Local playback of mpd http stream (html5 audio api)

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 (openjdk-9-jre-headless): optional for minifying .css and .js files

Unix Build Instructions

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

Usage: ./mympd /etc/mypd/mympd.conf

SSL

  1. Create ca and certificate /path/to/src/contrib/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.

ympd: 2013-2014 andy@ndyk.de

myMPD: 2018 mail@jcgames.de