All Projects → compactd → Compactd

compactd / Compactd

Licence: mit
Remote music player that supports adding more content

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Compactd

Homehost
self-hosted, Netflix-like app made for streaming
Stars: ✭ 564 (+652%)
Mutual labels:  self-hosted, music, streaming
Supysonic
Supysonic is a Python implementation of the Subsonic server API.
Stars: ✭ 187 (+149.33%)
Mutual labels:  self-hosted, music, streaming
Waveline Server
Simple self-hosted music streaming server
Stars: ✭ 248 (+230.67%)
Mutual labels:  self-hosted, music, streaming
Httpms
Media server with RESTful API and Web interface. Think of it as your very own Spotify!
Stars: ✭ 18 (-76%)
Mutual labels:  self-hosted, music, streaming
Airsonic
📡 ☁️ 🎶Airsonic, a Free and Open Source community driven media server (fork of Subsonic and Libresonic)
Stars: ✭ 1,876 (+2401.33%)
Mutual labels:  self-hosted, music, streaming
Maloja
Self-hosted music scrobble database to create personal listening statistics and charts
Stars: ✭ 223 (+197.33%)
Mutual labels:  self-hosted, music
Myflix
Myflix, a Netflix clone!
Stars: ✭ 260 (+246.67%)
Mutual labels:  self-hosted, streaming
Lms
Lightweight Music Server. Access your self-hosted music using a web interface.
Stars: ✭ 315 (+320%)
Mutual labels:  self-hosted, music
Auryo
Auryo - Unofficial Soundcloud Desktop App
Stars: ✭ 611 (+714.67%)
Mutual labels:  music, streaming
Slimserver
Server for Logitech Squeezebox players. This server is also called Logitech Media Server
Stars: ✭ 640 (+753.33%)
Mutual labels:  music, streaming
Sonerezh
A self-hosted, web-based application to stream your music, everywhere.
Stars: ✭ 750 (+900%)
Mutual labels:  self-hosted, music
Navidrome
🎧☁️ Modern Music Server and Streamer compatible with Subsonic/Airsonic
Stars: ✭ 932 (+1142.67%)
Mutual labels:  self-hosted, music
Essentialnowplaying
A now playing tool intended to be used with OBS.
Stars: ✭ 40 (-46.67%)
Mutual labels:  music, streaming
Openwhyd
💎 Like Pinterest, for Music
Stars: ✭ 287 (+282.67%)
Mutual labels:  music, streaming
Pandoraplayer
🅿️ PandoraPlayer is a lightweight music player for iOS, based on AudioKit and completely written in Swift.
Stars: ✭ 1,037 (+1282.67%)
Mutual labels:  music, streaming
Gnome Shell Extension Cast To Tv
Cast files to Chromecast, web browser or media player app over local network.
Stars: ✭ 200 (+166.67%)
Mutual labels:  music, streaming
Soundtrack
Self-hosted collaborative music playing application.
Stars: ✭ 114 (+52%)
Mutual labels:  music, streaming
Python Tidal
Python API for TIDAL music streaming service
Stars: ✭ 145 (+93.33%)
Mutual labels:  music, streaming
Nuclear
Streaming music player that finds free music for you
Stars: ✭ 7,133 (+9410.67%)
Mutual labels:  music, streaming
Django Music Streaming App
Simple Music Stream App
Stars: ✭ 43 (-42.67%)
Mutual labels:  music, streaming

Compactd

npm version .

(pronounce compact-D)

Compactd aims to be a self-hosted remote music player in your browser, streaming from you own personal server. It will also allows to download new music onto your server just like headphones does.

Main view Waveform

Features

  • Scan any download folder (no neeed for a specific format like Plex)
  • Finder-like columns for browsing library
  • Fuzzy finder for searching library
  • Library reorganization (moving an album to a different artist)
  • Hidding and removing track (only from the database) from library
  • Streaming music
  • Music transcoding on-the-fly
  • Hotkey controls (J, K, L, Ctrl+P)
  • Artist and album downloading
  • Gazelle-based trackers support
  • Deluge torrent client supported
  • Waveform vizualisation

Future development

  • SoundScrape support: download from SoundCloud or Bandcamp
  • Youtube support : download music from youtube
  • Standalone desktop app: with or without server local playback / downloading
  • Folder view: browse by folders instead of artists / albums

Stack

Redux, React, PouchDB, Webpack, Typescript, Socket.io...

Prequisites

  • Node v8 and npm v5. I recommend using https://github.com/creationix/nvm
  • CouchDB v2. You can install it following this guide for linux . Windows is quite straightforward, on Debian, you will need to build it from source following the tutorial. Just make sure you don't configure anything or any password.
  • Latest Ffmpeg. Installation varies from OS, you might wanna follow this guide
  • deluge with deluge-web are optionnal (for downloading new content)
  • audiowaveform is optionnal, only if you want to use the waveform feature. Ubuntu, Arch, and Mac OS are straightforward, debian requires building from source; Windows doesn't work.
  • opencv2 is optional, it allows the artwork processing tool to recognize face and crops images if they are not squared

Installation

$ npm install --global compactd
$ compactd --configure

Follow the steps. Once it is down everything is configured!

Nginx configuration

You need at least to locations, one for the http part and one for the socket server which allows realtime data update. Example:

server {

    listen 443 ssl;                                                             
    server_name compactd.io;

    include snippets/ssl-compactd.io.conf;
    include snippets/ssl-params.conf;

    access_log            /var/log/nginx/access.log;

    location /engine.io/ {
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      proxy_http_version 1.1;
      proxy_set_header        Host $host;
      proxy_set_header        X-Real-IP $remote_addr;
      proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header        X-Forwarded-Proto $scheme;

      proxy_pass          http://127.0.0.1:9001;
    }

    location / {
      proxy_set_header        Host $host;
      proxy_set_header        X-Real-IP $remote_addr;
      proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header        X-Forwarded-Proto $scheme;

      # Fix the âIt appears that your reverse proxy set up is broken" error.
      proxy_pass          http://127.0.0.1:9000;
      proxy_read_timeout  90;

      proxy_redirect      http://127.0.0.1:9000 https://compactd.io;
    }
  }

Starting

Just run

$ compactd --serve

This will spawn a pm2 process in the background if it's not already running for process management.

Stopping, restarting

$ pm2 restart compactd
$ pm2 stop compactd
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].