• 1 Post
  • 75 Comments
Joined 2 years ago
cake
Cake day: November 10th, 2023

help-circle
  • FMHY has some good ones for high quality music. Organizing your Library will also be real easy with Musicbrainz Picard.

    As for mass downloading there should be some Spotify downloaders out there. Every other way will proly not be able to get 100% of your library. Just make sure to use a trusted one, because you’ll most likely have login with your account to access your saved stuff & playlists.

    Personally I download from Tidal for HiFi (yt-dlp + hifi-tui) and Youtube Music (yt-dlp) for everything else.




















  • No, AllowedIPs should be set to your internal Wireguards IP range to only allow access to your Wireguard peers. You could also add more like your Servers LAN for example (which will need packet forwarding, as I mentioned before)

    Here’s an example of one of my client configs:

    [Interface]
    Address = 10.8.0.2/32
    PrivateKey = 
    
    [Peer]
    PublicKey = 
    PresharedKey = 
    Endpoint = 192.168.0.3:51820
    AllowedIPs = 10.8.0.0/16
    

    Just be careful to not mess up your subnet masks. For example my [Interface] Address ends with /32 because that only leaves 10.8.0.2 In the [Peer] Section i set it to /16 which will allow the client to connect to 10.8.x.x iirc

    Best is to just try it yourself and see if it works, I’m by no means good at networking stuff