• 2 Posts
  • 110 Comments
Joined 2 years ago
cake
Cake day: July 14th, 2024

help-circle
  • I use that lyrics plugin and it works great. Basically you just enable it in navidrome and in your configuration you set the lyrics priority. I have it set so its lrc -> txt -> plugin -> embedded so if i have lrc/txt lyrics already it pulls those and if not the plugin will search. If plugin fails it will check for anyvembedded lyrics. This works with my feishin (pc) and symfonium (android) apps if I’m on my network or vpn’ed in (i don’t expose my server).

    Another thing you can do is use the LRCGET app which can bulk download them.

    I haven’t touched the ELRC lyrics yet but will look into pulling those






  • My music is on my PC hard drive and synced to my server. Last year I spent a few weeks tagging my old stuff and i tried beets, kid3, and picard but ended up liking picard the most just since it was a lot better at grouping albums together and finding the best matches ime. Any new music is tagged with picard. Then i run a navidrome docker container with the music library mounted. And i use feishin for desktop and symfonium for mobile use.

    If you’re interested, i wrote about my experience migrating from iTunes to navidrome and tagging my music here (no ads, monetization, or tracking)




  • Are there any good apps for android for navidrome/jellyfin respectively?

    Symfonium is paid but by far the best i tried. Will work with both via subsonic api.

    how easy can I add songs to them/do they pull metadata from somewhere (like jellyfin does for movies)

    I use navidrome and can’t speak to jellyfin. Navidrome is intentionally read-only for security reasons so you add music to where navidrome can see it and it’ll auto-scan them in. For metadata my recommendation is musicbrainz picard. A lot of people recommend beets and it can be good but it’s a big learning curve. Musicbrainz picard has a nice gui and easier to get music matched for beginners.

    how do they (or any other options) compare in terms of ease of setup/maintainability?

    From what i see people use jellyfin because they don’t want “yet another container” and most people already have jellyfin for other media content. So that would be easiest route. Navidrome isn’t hard to set up though, and overall has a better feel for me.

    do you have any overall recommendations?

    Look into LRCGET to get the timesynced and/or plaintext lyrics of your songs. There’s also a navidrome plugin that will automatically fetch the lyrics when a song is played

    Edit: for desktop id recommend feishin. It’ll work with both through subsonic api



  • In your docker-compose.yaml you need to add in your directory if you haven’t already

    services:
      immich-server:
        volumes:
          # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
          - ${UPLOAD_LOCATION}:/usr/src/app/upload
          - /etc/localtime:/etc/localtime:ro
    +     # Add NAS pictures and videos folders to use as External Libraries
    +     - "/volume1/data/ Pictures:/usr/src/app/library/pictures"
    

    Then in immich you need to add this as an external library. Click your profile icon -> administration -> external library -> create library. It will ask for a path and you need to use the library mount point within docker which was /usr/src/app/library/pictures from my example. Click add path

    That should get you good to go





  • what you use for your documentation

    Hugo (markdown) files that i host on my internal server.

    how you organize it

    I use basic directory structure. Top level directories are like “dev”, “home”, “general”. Self hosting is a dev/ subdir.

    what information you include

    Depends on how familiar i am with it and how often I’ll be referencing it. Something i know well or access often will be more high level. Things like an annual process i have documented in more detail

    how you work documentation into your changes/tinkering flow

    My site has an “edit this page” feature which i use to open my IDE and make the change as I’m doing things. Sometimes I’ll be lazy and just add in what i did this time and then let future me reconcile the differences 🙃