Jump to content

Music Server pentru Linux


oviteodor

Recommended Posts

Ce Music Server folosi?i pentru Linux?

Mai este de actualitate Logitech Media Server?

În present folosesc Navidrome ?i Jellyfin , dar m? întreb daca este alta solu?ie mai buna.

Dintre cele 2 de mai sus, Jellyfin este mai bun

  • mai bine maintained,
  • open source,
  • gratis server si mobile apps,
  • mai flexibil (filme, muzica),
  • mai eficient ca resurse cpu si memorie,
  • face transcoding pt orice format daca este nevoie (pentru Apple iOS DSD pare sa nu aib? nevoie de transcoding) 

Navidrome (doar muzica)

mkdir -p /<path>/navidrome/data

docker stop navidrome
docker rm navidrome

docker run -d \
    --name navidrome \
    --cpuset-cpus="3" \
    --memory="500m" \
    --restart=unless-stopped \
    -p 4533:4533 \
    -e ND_LOGLEVEL=info \
    -v /<path>/navidrome/data:/data \
    -v /<path>/Music:/music \
    -v /<path>/_Music:/music/<path> \
    deluan/navidrome:latest

firewall-cmd --permanent --zone=public --add-port=4533/tcp           # Docker Navidrome
firewall-cmd --reload

Jellyfin (orice media, similar cu Plex)

mkdir -p /<path>/jellyfin/config
mkdir /<path>/jellyfin/cache

docker pull jellyfin/jellyfin

docker stop jellyfin
docker rm jellyfin

docker run -d \
    --name jellyfin \
    --cpuset-cpus="1,2" \
    --memory="3g" \
    --restart=unless-stopped \
    -v /<path>/jellyfin/config:/config \
    -v /<path>/jellyfin/cache:/cache \
    -v /<path>:/media \
    -p 8096:8096/tcp \
    -p 1900:1900/udp \
    jellyfin/jellyfin

firewall-cmd --permanent --zone=public --add-port=8096/tcp           # Docker Jellyfin HTTP
firewall-cmd --permanent --zone=public --add-port=1900/udp           # Docker Jellyfin Service Discovery DLNA UPnP
firewall-cmd --reload

 

 

 

 

Link to comment
Share on other sites

Plex folosesc si eu de cativa ani pentru filme/seriale.

Le vizionez si acasa pe TV si in deplasare, la munca, pe PC :D.

Plexamp nu folosesc, am ramas cu spotify.

Am folosit si Jellyfin.

Il accesam cu Tailscape VPN dar am renuntat, Plex este mura-n gura.

I was lookin' back to see if you were lookin' back at me
To see me lookin' back at you

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...