every once in awhile i get a bug up my butt about sharing my massive, curated library… but every time i get distracted by the volume of steps it would take to create the necessary shit to seed and then find a place that would even take those seeds to index.

ami doin it wrong? why is it so hard? napster was easy.

  • onlinepersona@programming.dev
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 months ago

    Hmmm, is your goal to share each season folder separately? Is that why you would need scripting?

    Or are you looking to share everything at once without worrying about creating individual torrents? If this is what you’re looking for, then maybe Retroshare is what you’re looking for? I don’t know if stuff using eDonkey, Gnutella, or Kademlia are still around, but retroshare has file-sharing similar to those where you point the client at a folder and it just shares the entire thing.

    IPFS would’ve been great for this, but they honestly screwed the pooch on that (it hogs resources, doesn’t have good clients, and doesn’t have a bridge to torrents or other networks i.e you can’t go “oh, I have a torrent file, let me see if the files for this are on IPFS and download them from there”).

    Anti Commercial-AI license

    • originalucifer@moist.catsweat.comOP
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      id prolly be happy with it at the series level even, not necessarily the seasons… but one torrent seems like a pain to create… thousands seems arduous. without a lot of scripting that is. i’m checkin out retroshare also, thanks!

      • onlinepersona@programming.dev
        link
        fedilink
        English
        arrow-up
        3
        ·
        2 months ago

        Hmm, creating torrents isn’t that hard.

        for folder in * ; do
          transmission-create -o "$folder.torrent" "$folder"
        done
        

        You can add a tracker by adding the --tracker "$trackerUrl" option. There isn’t much more scripting involved, AFAIK, unless you want to upload them to the tracker too. But if you join the DHT and share the magnet links somewhere, you should be done. Or is there more to the process I’m missing?

        Anti Commercial-AI license