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
      6
      ·
      1 day ago

      You can use transmission just for creating the torrent. You don’t have to use the actual client. If qbittorrent is your client, it’s possible to add the torrents to the list at the same time with

      for folder in * ; do
        transmission-create -o "$folder.torrent" "$folder"
        qbittorrent --save-path="$folder" "$folder.torrent"
      done
      

      Then you create the torrent and start seeding it immediately. If you’ve already created the torrent files

      for torrentFile in **/*.torrent ; do
        folderName="$(basename -s .torrent "$torrentFile")"
        folderParent="$(dirname "$torrentFile")"
        folderPath="$folderName/$folderParent"
        qbittorent --save-path="$folderPath" "$torrentFile"
      done
      
      

      Depending on the setup, you could also just sym link the folder into qbittorrent’s download directory and copy your torrents into a folder that qbittorrent listens to. There are many ways to skin the cat. Check out the command line parameters for your torrent client.

      Anti Commercial-AI license