🎧☁️ Modern Music Server and Streamer compatible with Subsonic/Airsonic
Go to file
Deluan d7b5e6a36c fix: add `public` attribute to playlists. Even though it is optional,
DSub requires it
2020-02-23 00:10:05 -05:00
.github docs: update screenshots 2020-02-07 18:21:51 -05:00
assets Add warning when using external assets 2020-01-24 20:35:27 -05:00
bin chore: remove unused script 2020-02-22 20:29:57 -05:00
conf feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00
consts refactor: more stable transcoder, based on http.FileSystem 2020-02-19 14:53:35 -05:00
db fix: typo 2020-02-20 19:39:32 -05:00
engine fix: add `public` attribute to playlists. Even though it is optional, 2020-02-23 00:10:05 -05:00
log feat: improve logs, remove config for disable authentication 2020-02-01 17:23:03 -05:00
model feat: store duration as float, to cater for milliseconds 2020-02-20 17:02:06 -05:00
persistence feat: store duration as float, to cater for milliseconds 2020-02-20 17:02:06 -05:00
scanner feat: store duration as float, to cater for milliseconds 2020-02-20 17:02:06 -05:00
server feat: store duration as float, to cater for milliseconds 2020-02-20 17:02:06 -05:00
static Add git info to version 2020-01-25 11:06:04 -05:00
tests test: removed unused `file` property 2020-02-04 19:59:04 -05:00
ui feat: add cache to the getCoverArt endpoint, avoid it being reloaded every single time in the UI 2020-02-15 14:32:11 -05:00
utils refactor: move request param extractors to utils 2020-02-06 18:55:38 -05:00
.dockerignore test: removed unused `file` property 2020-02-04 19:59:04 -05:00
.gitignore chore: add a docker-compose.override.yml file, to support local testing 2020-02-06 12:12:10 -05:00
.goreleaser.yml chore: try to make goreleaser add all changes to changelog 2020-02-03 20:13:32 -05:00
.nvmrc Upgrade node to latest 2020-01-23 18:32:49 -05:00
API_COMPATIBILITY.md docs: update `stream` notes 2020-02-03 11:50:46 -05:00
Dockerfile feat: use tini to help in avoiding dangling processes 2020-02-15 18:34:47 -05:00
LICENSE Change license to GPLv3 2020-01-22 14:48:38 -05:00
Makefile fix: removed invalid `make` rule 2020-02-04 15:02:43 -05:00
Procfile.dev Add ui subfolder, bootstrapped a "hello-world" React-Admin app, changed Makefile to start both apps in dev mode 2020-01-14 15:34:59 -05:00
README.md docs: update screenshots 2020-02-07 18:21:51 -05:00
docker-compose.yml chore: add a docker-compose.override.yml file, to support local testing 2020-02-06 12:12:10 -05:00
go.mod feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00
go.sum feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00
main.go feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00
reflex.conf Rename project to Navidrome 2020-01-23 19:44:08 -05:00
wire_gen.go feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00
wire_injectors.go feat: add a proper caching system to the transcoding functionality 2020-02-20 19:25:39 -05:00

README.md

Navidrome Music Streamer

Build Last Release Docker Pulls Join the Chat

Navidrome is an open source web-based music collection server and streamer. It gives you freedom to listen to your music collection from any browser or mobile device. It's like your personal Spotify!

Any feedback is welcome! If you need/want a new feature, find a bug or think of any way to improve Navidrome, please fill a GitHub issue or join the chat in our Discord server

Features

  • Handles very large music collections
  • Streams virtually any audio format available
  • Reads and uses all your beautifully curated metadata (id3 tags)
  • Multi-user, each user has their own play counts, playlists, favourites, etc..
  • Very low resource usage: Ex: with a library of 300GB (~29000 songs), it uses less than 50MB of RAM
  • Multi-platform, runs on macOS, Linux and Windows. Docker images are also provided
  • Automatically monitors your library for changes, importing new files and reloading new metadata
  • Modern and responsive Web interface based on Material UI, to manage users and browse your library
  • Compatible with the huge selection of clients for Subsonic, Airsonic and Madsonic. See the complete list of available mobile and web apps
  • Transcoding/Downsampling on-the-fly (WIP. Experimental support is available)
  • Integrated music player (WIP)

Road map

This project is being actively worked on. Expect a more polished experience and new features/releases on a frequent basis. Some upcoming features planned:

  • Last.FM integration
  • Pre-build binaries for Raspberry Pi
  • Smart/dynamic playlists (similar to iTunes)
  • Support for audiobooks (bookmarking)
  • Jukebox mode
  • Sharing links to albums/songs/playlists
  • Podcasts

Installation

Various options are available:

Pre-built executables

Just head to the releases page and download the latest version for you platform. There are builds available for Linux, macOS and Windows (32 and 64 bits).

Remember to install ffmpeg in your system, a requirement for Navidrome to work properly. You may find the latest static build for your platform here: https://johnvansickle.com/ffmpeg/

If you have any issues with these binaries, or need a binary for a different platform, please open an issue

Docker

Docker images are available. They include everything needed to run Navidrome. Example of usage:

# This is just an example. Customize it to your needs.

version: "3"
services:
  navidrome:
    image: deluan/navidrome:latest
    ports:
      - "4533:4533"
    environment:
      # All options with their default values:
      ND_MUSICFOLDER: /music
      ND_DATAFOLDER: /data
      ND_SCANINTERVAL: 1m
      ND_LOGLEVEL: info  
      ND_PORT: 4533
    volumes:
      - "./data:/data"
      - "/path/to/your/music/folder:/music"

To get the cutting-edge, latest version from master, use the image deluan/navidrome:develop

Build from source

You will need to install Go 1.13 and Node 13.7.0. You'll also need ffmpeg installed in your system. The setup is very strict, and the steps bellow only work with these specific versions (enforced in the Makefile)

After the prerequisites above are installed, clone this repository and build the application with:

$ git clone https://github.com/deluan/navidrome
$ cd navidrome
$ make setup        # Install tools required for Navidrome's development 
$ make buildall     # Build UI and server, generates a single executable

This will generate the navidrome executable binary in the project's root folder.

Running for the first time

Start the server with:

./navidrome

The server should start listening for requests on the default port 4533

After starting Navidrome for the first time, go to http://localhost:4533. It will ask you to create your first admin user.

For more options, run navidrome --help

Screenshots

Subsonic API Version Compatibility

Check the up to date compatibility table for the latest Subsonic features available.