cyp for live.jerry.dn42 https://github.com/ondras/cyp
Go to file
JerryXiao e6618bd432
update
2023-04-15 20:49:45 +08:00
_youtube docker and youtube, docs 2019-10-29 08:49:04 +01:00
app update 2023-04-15 20:49:45 +08:00
misc screens 2020-03-27 21:32:56 +01:00
.dockerignore added Docker support, fixes issue #8 2019-10-28 11:41:14 +01:00
.gitignore passwords.json support 2020-09-20 18:43:38 +02:00
.npmrc mention required node version 10 2019-05-13 11:40:33 -03:00
Dockerfile fixed: Dockerfile now is properly working 2020-04-29 14:35:18 -03:00
LICENSE.txt license 2019-04-16 14:03:57 +02:00
Makefile bundle 2020-03-14 22:18:54 +01:00
README.md passwords.json support 2020-09-20 18:43:38 +02:00
index.js publish cyp changes 2022-01-13 11:16:40 +08:00
package.json publish cyp changes 2022-01-13 11:16:40 +08:00

README.md

CYP: Control Your Player

CYP is a web-based frontend for MPD, the Music Player Daemon. You can use it to control the playback without having to install native application(s). It works in modern web browsers, both desktop and mobile.

Screenshots

Features

  • Control the playback, queue, volume
  • Save and load playlists
  • Browse the library by artists/albums/directories
  • Display album art via native MPD calls (no need to access the library; requires MPD >= 0.21)
  • Youtube-dl integration
  • Dark/Light themes

Installation

Make sure you have a working MPD setup first and Node version >= 10

git clone https://github.com/ondras/cyp.git && cd cyp
npm i
node .

Point your browser to http://localhost:8080 to open the interface. Specify a custom MPD address via a server querystring argument (?server=localhost:6655).

Instalation - Docker

Alternatively, you can use Docker to run CYP.

git clone https://github.com/ondras/cyp.git && cd cyp
docker build -t cyp .
docker run --network=host cyp

Youtube-dl integration

You will need a working youtube-dl installation. Audio files are downloaded into the _youtube directory, so make sure it is available to your MPD library (use a symlink).

If you use Docker, you need to mount the _youtube directory into the image:

docker run --network=host -v "$(pwd)"/_youtube:/cyp/_youtube cyp

Changing the port

...is done via the PORT environment variable. If you use Docker, the -e switch does the trick:

docker run --network=host -e PORT=12345 cyp

Password-protected MPD

Create a passwords.json file in CYPs home directory. Specify passwords for available MPD servers:

{
  "localhost:6600": "my-pass-1",
  "some.other.server.or.ip:12345": "my-pass-2
}

Make sure that hostnames and ports match those specified via the server querystring argument (defaults to localhost:6600).

Technology

  • Connected to MPD via WebSockets (using the ws2mpd bridge)
  • Token-based access to the WebSocket endpoint (better than an Origin check)
  • Written using Custom Elements
  • Responsive layout via Flexbox
  • CSS Custom Properties
  • SVG icons (Material Design)
  • Can spawn Youtube-dl to search/download audio files
  • Album art retrieved directly from MPD (and cached via localStorage)