自建音乐服务器Navidrome

服务端

自从各大音乐软件都开始VIP了,我也是好久不去听歌了,突然想听歌的时候发现还是不开心的,毕竟现在很难去薅羊毛了。正好家里面有NAS服务器,何不自建呢?

2023年上半年就已经通过Navidrome建好了,可是没有真正的利用起来,服务端放的歌曲太杂了,并不像本地通过目录管理一样那么规整。而且音乐的标签也是非常的杂乱无章。

今天无意间看到一款可以配合Navidrome在服务端去修改标签的软件:music-tag-web。修改起来方便多了。花了将近两三个小时基本上就把现有的音乐规整好了。

image-20240216223236068

通过歌单的方式,将一类歌曲归类。这样随便听起来可选择性也符合我的要求。

  • music-tag-web docker-compose安装,通过compose安装我的volumes一直无法正确绑定,也挺奇怪的,最后直接通过docker安装使用。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
version: '3'

services:
  music-tag:
    image: xhongc/music_tag_web:latest
    container_name: music-tag-web
    ports:
      - "8008:8001"
    volumes:
      - /musiczone/navidrome-music/:/app/media:rw
      - /musiczone/mp3tagconf/:/app/data
    command: /start
    restart: always
  • Navidrome docker安装
1
docker run -d --name navidrome --restart=unless-stopped --user $(id -u):$(id -g) -v /share/CACHEDEV2_DATA/影视专区/音乐/navidrome-music:/music -v /share/CACHEDEV2_DATA/影视专区/音乐/navidrome-data:/data -p 4533:4533 -e ND_LOGLEVEL=info deluan/navidrome:latest

客户端

可使用的客户端也挺多的,下面从网上找了一些遗留备忘。

Navidrome 除了网页界面,还支持各种第三方客户端,下面标记的是已经使用觉得不错的APP。

  • iOS客户端
  • play:Sub:http://michaelsapps.dk/playsubapp/
  • substreamer:https://substreamerapp.com/
  • Amperfy:https://github.com/BLeeEZ/amperfy#readme
  • iSub:https://isub.app/
  • Android客户端
  • DSub:https://play.google.com/store/apps/details?id=github.daneren2005.dsub
  • Subtracks:https://github.com/austinried/subtracks#readme
  • substreamer:https://substreamerapp.com/
  • Ultrasonic:https://github.com/ultrasonic/ultrasonic#readme
  • Audinaut:https://github.com/nvllsvm/Audinaut#readme
  • Web客户端
  • Subplayer:https://github.com/peguerosdc/subplayer#readme
  • Airsonic Refix:https://github.com/tamland/airsonic-refix#readme
  • Aurial:http://shrimpza.github.io/aurial/
  • Jamstash:http://jamstash.com/
  • Subfire:http://p.subfireplayer.net/
  • Windows客户端
  • Sonixd:https://github.com/jeffvli/sonixd
  • Jellycli:https://github.com/tryffel/jellycli#readme
  • Linux客户端
  • Sonixd:https://github.com/jeffvli/sonixd
  • Sublime Music:https://sublimemusic.app/
  • STMP:https://github.com/wildeyedskies/stmp#readme
  • macOS客户端
  • Sonixd:https://github.com/jeffvli/sonixd
  • STMP:https://github.com/wildeyedskies/stmp#readme
updatedupdated2024-02-162024-02-16