[软件服务] Navidrome music音乐播放器+MP3Tag自动刮削

date
Nov 5, 2024
slug
newsoftware-navoidrome-music-tag
status
Published
summary
新软件-
tags
software
service
type
Post
URL
 
notion image

Summary

  • 引用官方介绍,Navidrome 支持的第三方客户端如下:
iOS: play:Sub, substreamer, Amperfy 和 iSub

安装过程


cd cd /data_n001/data/udata/real/15637/DockerSSD/

mkdir data music-tag-config

# softlink to music lib
ln -s /data_ZR55W0M6.ZR55W113.ZR55XSWJ.ZR55XTWM/data/udata/real/public/_music music

cat >> docker-compose.yml <<EOF
version: '3.8'

# 编码
services:
  navidrome:
    image: deluan/navidrome:latest
    container_name: navidrome
    environment:
      ND_SCANINTERVAL: 1m
      ND_LOGLEVEL: info
      ND_SESSIONTIMEOUT: 168h
      ND_BASEURL: ""
      ND_SPOTIFY_ID: "e79211b4b46e2"
      ND_SPOTIFY_SECRET: "48a2f77d4c19221819e"
      ND_LASTFM_SECRET: "c14740cecd50da8862"
      ND_LASTFM_APIKEY: "3747c3643a0adea11"
      ND_ENABLETRANSCODINGCONFIG: "true"
      ND_LASTFM_LANGUAGE: "zh"
    ports:
      - "42533:4533"
    volumes:
      - "./data:/data"
      - "./music:/music:ro"
    restart: unless-stopped

  miniserve:
    image: svenstaro/miniserve:latest
    container_name: miniserve
    depends_on:
      - navidrome
    ports:
      - "42534:8080"
    volumes:
      - "./music:/downloads"
    command: "-r -z -u -q -p 8080 -a YourOwnUserName:YourOwnPassw0rd /downloads"
    restart: unless-stopped

  music-tag:
    image: xhongc/music_tag_web:latest
    container_name: music-tag-web
    ports:
      - "42535:8002"
    volumes:
      - ./music:/app/media:rw
      - ./music-tag-config:/app/data
    restart: unless-stopped

networks:
  default:
    name: npm_nginx_proxy_manager-network
    external: true
EOF

docker compose down; docker compose up -d; sleep 1s; docker compose logs -f

# set up npm: -> http://navidrome:4533 
# set up zspace极空间 远程转发 -> http://ip:42533

截图

notion image

参考 https://1024.ee/2021/01/06/navidrome-自建音乐服务无限谷歌网盘/

notion image

Raw

notion image
notion image
 

© Ying Bun 2021 - 2024