Collaborative music collection editor
Docker image live — ghcr.io/hihilabs/edit.music:latest
New — try it in your browser

iChunez — what do you actually own?

Point it at your collection — a rekordbox XML, a Traktor NML, or just your music folder — then paste a tracklist or a YouTube playlist link. It tells you what you already have, what you only have as a bad rip, and where to buy the good copy. Nothing is uploaded; it all runs in your browser.

  Open the demo
edit.music for Windows
Runs locally — others on your network can join in
Install on a Windows machine and point it at your local music folder. Anyone on the same network can connect and participate in editing your collection — no Docker or cloud required.
edit.music for Mac
Native macOS app — drag and drop install
Download the disk image, drag edit.music to your Applications folder, and launch. Runs locally; share access with anyone on your network.
edit.music for Linux beta
.deb for Debian/Ubuntu, or a portable binary for any distro
Install the .deb on Debian/Ubuntu-based systems for app-menu integration, or grab the portable .tar.gz binary that runs on any distro — no install required. Runs locally; share access with anyone on your network.
Self-hosted via Docker
Runs anywhere Docker is installed — Unraid, NAS, VPS, Raspberry Pi
Pull the image and mount your music library. The web UI is accessible from any browser on your network. Persist metadata with the named volume so it survives container updates.
1
Save the compose file below, then run docker compose up -d
2
Open http://<your-host>:3001 in a browser
3
Update the image anytime: docker compose pull && docker compose up -d
services:
  edit-music:
    image: ghcr.io/hihilabs/edit.music:latest
    container_name: edit-music
    restart: unless-stopped
    ports:
      - "3001:3001"
    environment:
      - MUSIC_ROOT=/storage/music
      - RECYCLE_ROOT=/storage/recycle_bin
      - DATA_DIR=/data
    volumes:
      - /your/music/path:/storage/music  # ← update this
      - edit-music-data:/data

volumes:
  edit-music-data: