There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

What's the easiest way to host a music colletion (FLAC)?

I’ve tried a few options over the years, including SMB and NFS, XBMC as well as HTML with javascript I found online.

I don’t have a large collection of music (fewer than 100 albums), so hand coding things was actually one of the quicker options to setup. That’s despite then hassle of hand coding the URL to each FLAC file as well as the album art. But sometimes the javascript doesn’t handle large collections of FLAC and each implementation I tried had different quirks so I’ve sunk a lot of time into that in other ways without a satisfactory result.

I’ve heard of Emby, Jellyfin, Plex, Roon and Servio. I just need something that’s simple to set up and access. I don’t need fancy features beyond the ability to play the music with a pleasant UI that can be accessed from the web (HTTP, not HTTPS). I’d be running this from a Raspberry Pi 3B which already has the lighttpd server running.

I’m also considering just getting a portable, 128GB FLAC player with a minijack connection and moving on with my life without getting involved in networking at all.

Any recommendations for an uncomplicated way to approach to doing this?

Edit: Thanks so much for the helpful and enthusiastic comments! I tried Navidrome and had it up and running in ten minutes thanks to this tutorial video: invidious.nerdvpn.de/watch?v=7V5UUJlSknY

I had to install docker-compose on the RPi. Then I got an error which turned out to be because I also needed a separate docker daemon which I installed following these instructions: www.simplilearn.com/…/raspberry-pi-docker

In just 10+ minutes I had my music collection accessible from all my devices - thanks again!

azron ,

Ampache, good web interface and subsonic client support.

nezach ,

ReadyMedia (formerly MiniDLNA) works fine for me as a container via podman on a raspberry pi.


<span style="color:#323232;">podman run -d --name=minidlna 
</span><span style="color:#323232;">--net host 
</span><span style="color:#323232;">-v dir/to/music:/media/audio 
</span><span style="color:#323232;">-e MINIDLNA_MEDIA_DIR_1=A,/media/audio 
</span><span style="color:#323232;">-e MINIDLNA_FRIENDLY_NAME=Music 
</span><span style="color:#323232;">--restart on-failure:3 
</span><span style="color:#323232;">--platform linux/arm64 
</span><span style="color:#323232;">docker.io/vladgh/minidlna:latest
</span>

No http interface though for playback. Still very simple and does the job for me.

ChillPill ,
@ChillPill@lemmy.world avatar

I’m using a Jellyfin server with Symonium on android. It’s almost as good as plexamp, but sadly not available on other platforms. Symfonium will work with any media player that uses subsonic. My current jellyfin implementation is http with a VPN for external use.

SexualPolytope , (edited )
@SexualPolytope@lemmy.sdf.org avatar

I’ve been very happy with Navidrome. I have it accessible on a subdomain, so I can just use it from wherever I want. Feishin is a great frontend for Linux desktop, and Tempo is a great frontend for Android.

My friend used Jellyfin instead of Navidrome, and he’s also happy with it. Both the frontends that I mentioned work with Jellyfin as well.

recursive_recursion , (edited )
@recursive_recursion@programming.dev avatar

I recently learned that Strawberry has native built-in streaming capabilities

Repo

not sure if this is what you’re looking for but it’s an option that might be useful for you🤗

dinckelman ,

I have a RaspberryPi with a Plex container sitting upstairs. Works like a charm

StrawberryPigtails ,

Currently I use Jellyfin and found it simple enough to setup. My personal setup is https on the public internet using Caddy as a reverse proxy to handle the https part, but you can set it up for local network access only using http.

Jellyfin itself is not the greatest music player ever, (UI is more setup for movies and tv) but there are music-centric apps that use it as a backend that are really good, for most platforms. On my phone and tablet, I really like Finamp, and on the desktop I use Sonixd.

I’m also considering just getting a portable, 128GB FLAC player with a minijack connection and moving on with my life without getting involved in networking at all.

I used this setup for the better part of 20 years. Nothing wrong with it, my music collection simply expanded to the point where it simply wasn’t feasible to store all of it on my iPod anymore and from day to day I never really know what I’m going to be in the mood to listen to. Setting up a streaming service made more sense for me.

DirkMcCallahan ,

I’m also considering just getting a portable, 128GB FLAC player with a minijack connection and moving on with my life without getting involved in networking at all.

Yeah, I’d say that this is definitely the way to go. My .mp3 player only has something like 8 gigs of storage, but it takes a MicroSD card. With a 1 tb card, I can carry all the music I want (and realistically, given that your collection is pretty small, you could get away with a whole lot less than that).

brickfrog ,

Jellyfin should work fine for what you’re looking for. I haven’t run it on a Pi but it should work on that. You’ll be able to play music using the web ui as well as mobile apps if that’s your thing. It can also transcode on the fly so if your current browser/device/whatever can’t play .flac directly it’ll automatically transcode the playback to .mp3 or whatever it needs to be.

There are some other self hosted music/streaming projects you could take a look at that are much more built out for music playback specifically. Look into Airsonic-Advanced or Navidrome for example - I’ve been meaning to check them out myself but haven’t gotten around to it yet.

rsolva ,
@rsolva@lemmy.world avatar

I use Navidrome, it’s a single binary and gives you your own Spotify, kinda. It can be use with many other apps, in addition to the web interface, as it supports the subsonic protocol.

NathanUp ,
@NathanUp@lemmy.ml avatar

Seconding Navidrome. I stream from my Navidrome server to my phone, and then via DLNA from my phone to my HiFiBerry / stereo system. It’s very nice.

bizarroland ,

I tried navidrome but the issue I ran into is that it would not play individual songs or sort through them, it would just play my albums in alphabetical order.

And I don't know as far as jelly fin goes, I like it as a video platform but for music I couldn't get it to just randomly display the songs and let me shuffle through them.

I'm looking for a music server that can see all of my songs and music and shuffle them and play them. Does anything like that exist?

explore_broaden ,

I’m not sure when you were using it, but Navidrome definitely let’s you play individual songs and shuffle.

SexualPolytope ,
@SexualPolytope@lemmy.sdf.org avatar

Navidrome does that. I think you just used a bad frontend. Try Tempo if you’re using Android. Or Feishin on desktop.

FarraigePlaisteach OP ,
@FarraigePlaisteach@lemmy.world avatar

I got Navidrome working on the local network quickly with docker compose thanks to this video: invidious.nerdvpn.de/watch?v=7V5UUJlSknY

Once I forwarded the right port on my router I was also able to access the music from the web. Thanks for the recommendation, I’m very happy!

friend_of_satan ,

I saw in your update you mentioned installing docker-compose. Modern docker has “compose” as a verb, and should work as docker compose. I haven’t tested this on raspberry pi though.

Lifebandit666 ,

Plex was easy enough to set up. I use plexamp on my phone but can access the Plex server via a browser, which includes my music

sillyhatsonly ,

Streaming my own music was the reason I got into self-hosting in the first place and I’ve been satisfied with Navidrome for over a year now. My preference is to stream via an app on my phone but I’ve made accounts for a couple friends and they stream happily on multiple devices using the browser interface.

Johny5 ,
@Johny5@lemmy.world avatar

Do NOT use funkwhale!

kurcatovium ,

What’s wrong with it?

bizarroland ,

You got to give us some context my dude. Why is funk whale not recommended by you?

snugglebutt ,
@snugglebutt@lemmy.blahaj.zone avatar

I’m using Jellyfin, but navidrome worked just as well when I tried it

9point6 ,

Plex is probably the easiest and most convenient, I think jellyfin is viable too, but I don’t use it.

If you’ve got the money, Roon or Audirvana are the gold standard of self hosted music

If you want something similar, but free, look into things like volumio or subsonic based solutions.

dmention7 ,

Seconding Plex / Plexamp if the use case involves streaming remotely. Probably the easiest to get up and running for remote access.

I’m not sure about the capabilities of hosting on a Pi, but it should be straightforward to run a couple different apps in parallel to test and compare features (I’m currently doing exactly that with Plex and Jellyfin)

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines